﻿/* 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;
    bottom: 0;
    width: 100%;
    height: 65px;
    display: flex;
    background: linear-gradient(to right, #0a0e14 0%, #1a1a1a 100%);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(241, 196, 15, 0.1);
    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);
    border-bottom: 1px solid rgba(241, 196, 15, 0.1); /* Subtle premium gold border */
    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(auto-fit, minmax(250px, 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;
    }
}
/* Blog Section Styles (Centralized) */
.blog-section {
    padding: 80px 8%;
    background-color: #050505;
    text-align: center;
}

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

.blog-card {
    background: #111;
    border: 1px solid #222;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    border-color: #f1c40f;
}

.blog-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.blog-card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-content h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 15px;
    line-height: 1.4;
    font-weight: 700;
}

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

.blog-more {
    color: #f1c40f;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
}

@media (max-width: 768px) {
    .blog-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 20px;
        padding-bottom: 20px;
        margin-left: -4%;
        margin-right: -4%;
        padding-left: 4%;
        padding-right: 4%;
    }

    .blog-card {
        min-width: 280px;
        scroll-snap-align: center;
    }

    .blog-grid::-webkit-scrollbar {
        height: 4px;
    }

    .blog-grid::-webkit-scrollbar-thumb {
        background: #f1c40f;
        border-radius: 10px;
    }
}

/* FAQ Section Styles (Centralized) */
.faq-section { padding: 80px 8%; background: #050505; }
.faq-grid { 
    display: grid; 
    gap: 20px; 
    margin-top: 40px;
}
.faq-item {
    background: #111;
    border: 1px solid #222;
    padding: 25px;
    border-radius: 15px;
    transition: all 0.3s ease;
}
.faq-item:hover {
    border-color: #f1c40f;
    transform: translateY(-5px);
}
.faq-item h3 {
    color: #f1c40f;
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.faq-item p {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (min-width: 992px) {
    .faq-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 991px) {
    .faq-grid { grid-template-columns: repeat(2, 1fr); }
    .faq-section { padding: 60px 4%; }
    .faq-item { padding: 20px; }
    .faq-item h3 { font-size: 1rem; }
    .faq-item p { font-size: 0.85rem; }
}
@media (max-width: 480px) {
    .faq-grid { gap: 10px; }
    .faq-item { padding: 15px; }
}

/* ============================================================
   PREMIUM LEGAL PAGES DESIGN (KVKK, COOKIES, PRIVACY)
   ============================================================ */

.legal-hero {
    padding: 160px 10% 80px;
    background: radial-gradient(circle at top right, #1a1a1a, #000);
    text-align: center;
    border-bottom: 1px solid rgba(241, 196, 15, 0.1);
}

.legal-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #f1c40f;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 20px;
    animation: fadeInDown 0.8s ease-out;
}

.legal-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(241, 196, 15, 0.1);
    border: 1px solid #f1c40f;
    color: #f1c40f;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.legal-main-container {
    padding: 80px 10%;
    background-color: #050505;
    background-image: linear-gradient(rgba(241, 196, 15, 0.02) 1px, transparent 1px), 
                      linear-gradient(90deg, rgba(241, 196, 15, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
}

.legal-glass-card {
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 60px;
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 40px 100px rgba(0,0,0,0.5);
}

.legal-section {
    margin-bottom: 50px;
}

.legal-section h2 {
    color: #f1c40f;
    font-size: 1.8rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.legal-section h2 i {
    font-size: 1.4rem;
    opacity: 0.8;
}

.legal-text {
    color: #aaa;
    line-height: 2;
    font-size: 1.1rem;
}

.legal-text strong {
    color: #fff;
    font-weight: 700;
}

.legal-list {
    list-style: none;
    margin: 20px 0;
}

.legal-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
    color: #ccc;
}

.legal-list li::before {
    content: '\f058';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #f1c40f;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .legal-glass-card { padding: 30px; }
    .legal-hero { padding-top: 120px; }
}

/* ============================================================
   PREMIUM ARTICLE & BLOG DESIGN (SEO MONSTER)
   ============================================================ */

.article-hero {
    padding: 140px 10% 80px;
    background-color: #050505;
    background-image: linear-gradient(rgba(241, 196, 15, 0.03) 1px, transparent 1px), 
                      linear-gradient(90deg, rgba(241, 196, 15, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

.article-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.article-container h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    margin-bottom: 25px;
    line-height: 1.2;
    text-transform: uppercase;
}

.article-main-img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    margin: 40px 0;
    border: 1px solid rgba(241, 196, 15, 0.2);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.article-content {
    color: #ccc;
    font-size: 1.15rem;
    line-height: 1.9;
}

.article-content h2 {
    color: #f1c40f;
    font-size: 1.8rem;
    margin: 45px 0 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
}

.article-content p {
    margin-bottom: 25px;
}

.article-content strong {
    color: #fff;
    font-weight: 700;
}

/* ============================================================
   PREMIUM NEIGHBORHOOD SEO BLOCK
   ============================================================ */

.premium-seo-block {
    padding: 100px 10%;
    background: #0a0a0a;
}

.seo-wrapper {
    background: linear-gradient(145deg, #151515, #0a0a0a);
    border: 1px solid rgba(241, 196, 15, 0.1);
    border-radius: 20px;
    padding: 60px;
    display: flex;
    align-items: center;
    gap: 50px;
}

.seo-content {
    flex: 1;
}

.seo-content h2 {
    color: #f1c40f;
    font-size: 2.2rem;
    margin-bottom: 25px;
    font-family: 'Montserrat', sans-serif;
}

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

@media (max-width: 768px) {
    .article-hero { padding: 120px 5% 60px; }
    .seo-wrapper { padding: 30px; flex-direction: column; text-align: center; }
    .seo-content h2 { font-size: 1.6rem; }
}


/* Mahalle Ozel Mobil Istatistik Duzenlemesi */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 15px !important;
        padding: 20px 0;
    }
    .stat-item {
        text-align: center;
        padding: 10px;
        border: 1px solid rgba(212, 175, 55, 0.1);
        border-radius: 8px;
    }
    .stat-num {
        font-size: 1.2rem !important;
        margin-bottom: 5px;
    }
    .stat-desc {
        font-size: 0.7rem !important;
        color: #999;
    }
}

/* --- SEO PREMIUM GORSEL GUNCELLEMESI --- */
.product-card { position: relative; height: 350px; overflow: hidden; border-radius: 15px; border: 1px solid rgba(212, 175, 55, 0.1); transition: all 0.4s ease; }
.product-card img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; transition: transform 0.6s ease; }
.product-card:hover img { transform: scale(1.1); }
.product-card .card-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.85) 100%); z-index: 1; transition: opacity 0.4s ease; }
.product-card .card-content { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; padding: 25px; }
.product-card h3 { color: #f1c40f; font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.3rem; margin-bottom: 10px; text-shadow: 2px 2px 4px rgba(0,0,0,0.5); }
.product-card p { color: #fff; font-size: 0.9rem; margin-bottom: 15px; opacity: 0.9; line-height: 1.4; }

