/* 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: #2980b9; /* Telefon için mavi tonu */
}

.whatsapp-btn {
    background-color: #25d366; /* WhatsApp yeşili */
}

/* 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 (CSS'in en üstüne koyun) */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;800&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;
}

/* 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: -250px;
        width: 250px;
        height: 100vh;
        background-color: #1a1a1a;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s ease;
        z-index: 1000;
        box-shadow: -5px 0 15px rgba(0,0,0,0.5);
    }
    .nav-menu.active {
        right: 0;
    }
    .nav-menu li {
        margin: 20px 0;
        margin-left: 0;
    }
    .nav-menu a {
        font-size: 1.2rem;
    }
    /* 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);
    }
}

/* Slider Container */
.slider-container {
    position: relative;
    width: 100%;
    height: 90vh; /* Ekranın %90'ını kaplar. Header (80px) ile birlikte tam ekran olur. */
    overflow: hidden;
    background-color: #000;
}

/* Slaytlar */
.slider {
    width: 100%;
    height: 100%;
    display: flex;
}

.slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Yazıları sola hizalar */
    padding: 0 10%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
}

.slide.active {
    opacity: 1;
    position: relative;
}

/* Slayt Üzerindeki Yazılar */
.slide-content {
    max-width: 600px;
    color: white;
    font-family: 'Montserrat', sans-serif;
    transform: translateY(20px);
    transition: transform 0.6s ease-in-out;
}

.slide.active .slide-content {
    transform: translateY(0);
}

.slide-content .category {
    font-size: 1rem;
    font-weight: 400;
    text-transform: uppercase;
    color: #f1c40f; /* Altın sarısı vurgu */
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.slide-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5); /* Yazı okunabilirliği için gölge */
}

.slide-content p {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 30px;
    line-height: 1.6;
    color: #ecf0f1;
}

/* Butonlar */
.btn-primary, .btn-whatsapp {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    transition: 0.3s;
}

.btn-primary {
    background-color: #f1c40f;
    color: #1a1a1a;
}

.btn-primary:hover {
    background-color: #d4ac0d;
}

.btn-whatsapp {
    background-color: #25d366;
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-whatsapp:hover {
    background-color: #1ebd5b;
}

/* Kontrol Butonları (Nav) */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    font-size: 2rem;
    padding: 15px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 100;
    transition: 0.3s;
}

.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; }
}

.all-districts {
    padding: 60px 10%;
    background-color: #1a1a1a; /* Koyu tema, ciddiyet verir */
    color: #fff;
}

.seo-text-area {
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: center;
    line-height: 1.8;
    color: #ccc;
    font-size: 1.1rem;
}

.seo-text-area strong {
    color: #f1c40f; /* Anahtar kelimeleri vurgula */
}

.district-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.district-list {
    list-style: none;
}

.district-list li {
    margin-bottom: 12px;
}

.district-list a {
    text-decoration: none;
    color: #eee;
    font-size: 0.95rem;
    transition: 0.3s;
    display: block;
    padding: 10px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    border-left: 3px solid transparent;
}

.district-list a:hover {
    background: rgba(241, 196, 15, 0.1);
    color: #f1c40f;
    border-left: 3px solid #f1c40f;
    padding-left: 15px;
}

@media (max-width: 768px) {
    .all-districts { padding: 40px 5%; }
    .district-grid { grid-template-columns: 1fr 1fr; } /* Mobilde yan yana iki sütun */
}

.district-card {
    background: #FFFFFF;
    border: 1px solid #333;
    padding: 20px 15px;
    text-align: center;
    transition: 0.3s;
    min-height: 200px; /* Kutuları biraz küçülttük */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.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 */
    }
}

.districts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.district-card {
    background: #1a1a1a;
    border: 1px solid #333;
    padding: 30px 20px;
    text-align: center;
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px; /* Metinler uzadığı için yüksekliği biraz artırdık */
}

.district-card:hover {
    border-color: #f1c40f;
    transform: translateY(-5px);
    background: #222;
}

.district-card h3 {
    color: #f1c40f;
    font-size: 1.3rem;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.district-card p {
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.call-now {
    background: #f1c40f;
    color: #000;
    text-decoration: none;
    padding: 12px;
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: 0.3s;
    border-radius: 4px;
}

.call-now:hover {
    background: #fff;
    color: #1a1a1a;
}

/* Mobilde bölgeleri yan yana (2 sütun) yapmak için */
@media (max-width: 768px) {
    .districts-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }
    
    .district-card {
        padding: 12px 8px !important;
        min-height: auto !important;
        min-width: 0 !important;
        word-wrap: break-word !important;
    }
    
    .district-card h3 {
        font-size: 0.9rem !important;
        margin-bottom: 5px !important;
    }
    
    .district-card p {
        font-size: 0.75rem !important;
        line-height: 1.3 !important;
        margin-bottom: 10px !important;
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .call-now {
        padding: 8px !important;
        font-size: 0.75rem !important;
        display: block !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
}
.our-services {
    padding: 80px 10%;
    background-color: #ffffff;
    text-align: center;
}

.services-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 50px;
}

.service-item {
    flex: 1;
    padding: 40px 25px;
    background: #fdfdfd;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.service-item:hover {
    background: #1a1a1a; /* Üzerine gelince koyulaşır */
    border-color: #f1c40f;
    transform: translateY(-10px);
}

.service-icon {
    font-size: 3.5rem;
    color: #f1c40f;
    margin-bottom: 20px;
    transition: 0.3s;
}

.service-item:hover .service-icon, 
.service-item:hover h3, 
.service-item:hover p {
    color: #fff; /* Hover durumunda tüm yazılar beyaza döner */
}

.service-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

/* Mobil için yan yana dizilimi alt alta getirir */
@media (max-width: 992px) {
    .services-wrapper {
        flex-direction: column;
    }
    .service-item {
        margin-bottom: 20px;
    }
}
.our-services {
    padding: 80px 10%;
    background-color: #ffffff;
    text-align: center;
}

.services-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 50px;
}

.service-item {
    flex: 1;
    padding: 40px 25px;
    background: #fdfdfd;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.service-item:hover {
    background: #1a1a1a; /* Üzerine gelince koyulaşır */
    border-color: #f1c40f;
    transform: translateY(-10px);
}

.service-icon {
    font-size: 3.5rem;
    color: #f1c40f;
    margin-bottom: 20px;
    transition: 0.3s;
}

.service-item:hover .service-icon, 
.service-item:hover h3, 
.service-item:hover p {
    color: #fff; /* Hover durumunda tüm yazılar beyaza döner */
}

.service-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

/* Mobil için yan yana dizilimi alt alta getirir */
@media (max-width: 992px) {
    .services-wrapper {
        flex-direction: column;
    }
    .service-item {
        margin-bottom: 20px;
    }
}

/* 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: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.pricing-box {
    background: #1a1a1a;
    border: 1px solid #333;
    padding: 40px 30px;
    width: 350px;
    position: relative;
    transition: 0.4s ease;
    border-radius: 8px;
}

/* 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: #fff;
    font-size: 1.3rem;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.price-tag {
    color: #f1c40f;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 30px;
}

.box-features {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
    padding: 0;
}

.box-features li {
    color: #ccc;
    margin-bottom: 15px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.box-features li i {
    color: #f1c40f;
    font-size: 0.8rem;
}

.box-btn {
    display: block;
    background: transparent;
    color: #f1c40f;
    border: 2px solid #f1c40f;
    padding: 15px;
    text-decoration: none;
    font-weight: 800;
    transition: 0.3s;
    border-radius: 4px;
}

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

/* Mobil Uyumluluk */
@media (max-width: 992px) {
    .pricing-box.featured {
        transform: scale(1);
    }
    .pricing-wrapper {
        flex-direction: column;
    }
}
.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%;
    border-radius: 4px;
    filter: brightness(0.7);
    border: 1px solid #d4af37;
}

.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(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.product-card {
    background: #151515;
    border: 1px solid #222;
    padding: 40px 25px;
    border-radius: 4px;
    transition: 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.product-img-box {
    font-size: 3.5rem;
    color: #d4af37;
    margin-bottom: 25px;
    opacity: 0.8;
}

.product-card h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.product-btn {
    display: block;
    background: #d4af37;
    color: #000;
    text-decoration: none;
    padding: 15px;
    font-weight: 900;
    font-size: 0.9rem;
    border-radius: 2px;
    transition: 0.3s;
}

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

/* Mobil için */
@media (max-width: 768px) {
    .product-grid { grid-template-columns: 1fr; }
}
.product-grid {
    display: grid;
    /* Masaüstünde 4'lü, Orta ekranlarda 2'li, Mobilde Tekli */
    grid-template-columns: repeat(4, 1fr); 
    gap: 20px;
    margin-top: 50px;
}

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

@media (max-width: 768px) {
    .product-grid { grid-template-columns: 1fr; }
}

.product-card {
    min-height: 380px; /* Kart boylarını eşitlemek için */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
/* 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: 45px;
    height: 45px;
    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;
}

/* Arama Renkleri */
.call-float {
    background-color: #d4af37; /* Premium altın rengi */
}

/* 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);
}

/* 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;
}