/* =========================================
   1. SIFIRLAMA, DEĞİŞKENLER VE GENEL AYARLAR
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

html {
    scroll-padding-top: 85px;
}

body {
    background-color: #fff;
    color: #333;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

:root {
    --gold: #d4af37;
    --gold-hover: #b59022;
    --dark: #222;
    --light: #f9f9f9;
}

/* =========================================
   2. FONT VE ANİMASYONLAR
   ========================================= */
@font-face {
    font-family: 'LogoFont';
    src: url('assets/fonts/craketest-regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Voggie";
    src: url('assets/fonts/voggiet.ttf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes pulseAttention {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(212, 175, 55, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes bounceArrow {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-5px) translateX(5px);}
    60% {transform: translateY(-3px) translateX(3px);}
}

@keyframes pulseGreen {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* =========================================
   3. HEADER & NAVİGASYON
   ========================================= */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

/* LOGO */
.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo a img {
    height: 55px;
    width: auto;
    display: block;
    transition: transform 0.3s;
}

.logo a span {
    font-size: 22px;
    font-weight: 700;
    color: #444;
    letter-spacing: 1px;
    line-height: 1;
    font-family: 'LogoFont';
}

.logo a:hover img { transform: scale(1.1); }
.logo a:hover span { color: #d4af37; transition: color 0.3s; }

/* MENÜ */
.nav-group {
    display: flex;
    align-items: center;
    gap: 30px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

nav ul li a {
    text-decoration: none;
    color: #444;
    font-weight: 500;
    font-size: 15px;
    position: relative;
    transition: color 0.3s;
}

nav ul li a:hover { color: var(--gold); }

/* RANDEVU BUTONU */
.btn-randevu {
    background: linear-gradient(135deg, var(--gold) 0%, #f6d365 100%);
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    display: inline-block;
    white-space: nowrap;
}

.btn-randevu:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

/* HAMBURGER MENÜ İKONU */
.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background-color: var(--dark);
}

/* =========================================
   4. HERO (KAPAK) & BAŞLIKLAR
   ========================================= */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(255,255,255,0.2), rgba(255,255,255,0.9)), url('/assets/images/kapak.png');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 100px 20px 20px 20px;
}

.hero-content {
    max-width: 800px;
    width: 100%;
}

.marketing-badge {
    background: linear-gradient(-45deg, #d4af37, #ff5e62, #d4af37);
    background-size: 400% 400%;
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    margin: 0 auto 30px auto;
    animation: gradientMove 3s ease infinite, pulseAttention 2s infinite;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero h1 {
    font-size: 4rem;
    font-family: 'Voggie';
    font-weight: 100;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #322D31;
    animation: slideInLeft 1s ease backwards;
}

.hero p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
}

/* SECTION STANDARTLARI */
.section { padding: 100px 10%; }

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    font-weight: 400;
}

.section-title span {
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    font-family: 'Voggie';
}

/* Alt Çizgi Efekti (Ortadan) */
.section-title span::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    border-radius: 10px;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, var(--gold) 30%, var(--gold) 70%, rgba(255,255,255,0) 100%);
    opacity: 0.8;
}

/* Sola Dayalı Başlık (Gold) */
.section-title2 {
    text-align: left;
    font-size: 1.5rem;
    margin-bottom: 40px;
    font-weight: 400;
}

.section-title2 span, .section-title2-white span {
    position: relative; 
    display: inline-block; 
}

/* Yan Çizgi Efekti */
.section-title2 span::after, .section-title2-white span::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 100%;
    margin-left: 20px;
    width: 100%;
    height: 2px;
    border-radius: 10px;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, var(--gold) 30%, var(--gold) 70%, rgba(255,255,255,0) 100%);
    opacity: 0.8;
}

/* Sola Dayalı Başlık (Beyaz) */
.section-title2-white {
    text-align: left;
    font-size: 1.5rem;
    margin-bottom: 40px;
    font-weight: 400;
    color: white;
}

/* =========================================
   5. KARTLAR VE GRID SİSTEMİ
   ========================================= */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.card {
    position: relative;
    height: 350px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.4s ease;
    display: flex;
    align-items: flex-end; 
    background-size: cover;
    background-position: center;
}

.card:hover { transform: translateY(-10px); }

.card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: inherit;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
    z-index: 0;
}

.card:hover::before { transform: scale(1.1); }

.card-content {
    position: relative;
    z-index: 2;
    padding: 25px;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0)); 
}

.card h3 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.5;
}

a.card-link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.read-more {
    display: inline-block;
    margin-top: 10px;
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 600;
}

/* --- KART ARKA PLAN RESİMLERİ --- */
.card-lazer-erkek { background-image: url('/assets/images/erkeklazer.png'); }
.card-lazer-kadin { background-image: url('/assets/images/kadinlazer.png'); }
.card-cilt-bakim { background-image: url('/assets/images/ciltbakimi.jpg'); }
.card-cilt-vit { background-image: url('/assets/images/ciltvitamini.jpg'); }
.card-sac-vit { background-image: url('/assets/images/sacvitamini.jpg'); }
.card-dudak-vit { background-image: url('/assets/images/dudakvitamini.jpg'); }
.card-kas-vit { background-image: url('/assets/images/kasvitamini.jpg'); }
.card-ipek-kirpik { background-image: url('/assets/images/ipekkirpik.jpg'); }
.card-lifting { background-image: url('/assets/images/kirpiklifting.jpg'); }
.card-altin-oran { background-image: url('/assets/images/altinorankas.jpg'); }
.card-kas-laminasyonu { background-image: url('/assets/images/kaslaminasyonu.jpg'); }
.card-protez-tirnak { background-image: url('/assets/images/proteztirnak.jpg'); }
.card-kalici-makyaj { background-image: url('/assets/images/kalicimakyaj.jpg'); }
.card-meridyen { background-image: url('/assets/images/meridyen-terapisi-maltepe-aysoria-beauty.jpg'); }
.card-ayak-detoks { background-image: url('/assets/images/ayak-detoksu-maltepe-aysoria-beauty.jpg');}

/* Erkek Lazer Bölgeleri */
.card-tum-vucut { background-image: url('/assets/images/tum-vucut-erkek-lazer-maltepe.jpg'); }
.card-sakal-ustu { background-image: url('/assets/images/sakal-ustu-lazer-maltepe.jpg'); }
.card-kas-bolgesi { background-image: url('/assets/images/kas-bolgesi-erkek-lazer-maltepe.jpg'); }
.card-ense-bolgesi { background-image: url('/assets/images/ense-bolgesi-erkek-lazer-maltepe.jpg'); }
.card-boyun-bolgesi { background-image: url('/assets/images/boyun-bolgesi-erkek-lazer-maltepe.jpg'); }
.card-gogus-bolgesi { background-image: url('/assets/images/gogus-bolgesi-erkek-lazer-maltepe.jpg'); }
.card-sirt-bolgesi { background-image: url('/assets/images/sirt-bolgesi-erkek-lazer-maltepe.jpg'); }
.card-omuz-bolgesi { background-image: url('/assets/images/omuz-bolgesi-erkek-lazer-maltepe.jpg'); }
.card-kol-bolgesi { background-image: url('/assets/images/kol-bolgesi-erkek-lazer-maltepe.jpg'); }
.card-el-uzeri { background-image: url('/assets/images/el-uzeri-erkek-lazer-maltepe.jpg'); }
.card-koltuk-alti { background-image: url('/assets/images/koltuk-alti-erkek-lazer-maltepe.jpg'); }
.card-kalca-bolgesi { background-image: url('/assets/images/kalca-bolgesi-erkek-lazer-maltepe.jpg'); }
.card-genital-bolge { background-image: url('/assets/images/genital-bolge-erkek-lazer-maltepe.jpg'); }
.card-bacak-bolgesi { background-image: url('/assets/images/bacak-bolgesi-erkek-lazer-maltepe.jpg'); }

/* Kadın Lazer Bölgeleri */
.card-tum-vucut-kadin { background-image: url('/assets/images/tum-vucut-kadin-lazer-maltepe.jpg'); }
.card-sirt-bolgesi-kadin { background-image: url('/assets/images/sirt-bolgesi-kadin-lazer-maltepe.jpg'); }
.card-gogus-bolgesi-kadin { background-image: url('/assets/images/gogus-bolgesi-kadin-lazer-maltepe.jpg'); }
.card-koltuk-alti-kadin { background-image: url('/assets/images/koltuk-alti-kadin-lazer-maltepe.jpg'); }
.card-yuz-bolgesi { background-image: url('/assets/images/yuz-bolgesi-kadin-lazer-maltepe.jpg'); }
.card-bacak-bolgesi-kadin { background-image: url('/assets/images/bacak-bolgesi-kadin-lazer-maltepe.jpg'); }
.card-kol-bolgesi-kadin { background-image: url('/assets/images/kol-bolgesi-kadin-lazer-maltepe.jpg'); }
.card-biyik-bolgesi { background-image: url('/assets/images/biyik-bolgesi-kadin-lazer-maltepe.jpg'); }
.card-cene-bolgesi { background-image: url('/assets/images/cene-bolgesi-kadin-lazer-maltepe.jpg'); }
.card-bikini-bolgesi { background-image: url('/assets/images/bikini-bolgesi-lazer-maltepe.jpg'); }

/* --- KART ÜZERİNDEKİ İNDİRİM ROZETİ --- */
.card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(-45deg, #d4af37, #ff5e62, #d4af37);
    background-size: 200% 200%;
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 10;
    letter-spacing: 0.5px;
    animation: gradientMove 3s ease infinite;
}

.card:hover .card-badge {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* =========================================
   6. HİZMET DETAY & TECH & SSS
   ========================================= */

/* HİZMET DETAY (Erkek/Kadın Lazer vb.) */
.service-section {
    background: #293133;
    padding-top: 150px !important; 
    padding-bottom: 100px;
}
.service-title { color: white; }

.service-container {
    display: flex;
    align-items: flex-start; 
    justify-content: space-between;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.service-image {
    flex: 1;
    position: -webkit-sticky; 
    position: sticky;       
    top: 150px;              
    align-self: flex-start;   
    height: fit-content;
}

.service-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    object-fit: cover;
    display: block;
}

.service-content {
    flex: 1;
    padding-top: 5px; 
}

.service-content h3 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 20px;
    font-weight: 600;
}
.service-content p {
    color: white;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 1rem;
}

/* Hizmet Özellik Listesi */
.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}
.service-features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}
.service-features li i {
    color: #27ae60;
    margin-right: 15px;
    font-size: 1.2rem;
    margin-top: 3px;
    min-width: 20px;
}
.service-features li strong {
    display: block;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 1.05rem;
}

.btn-service {
    display: inline-block;
    background-color: #d4af37;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}
.btn-service:hover {
    background-color: #b59025;
    transform: translateY(-2px);
}

/* TECH SECTION (Cihaz ve Teknoloji) */
.tech-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
    width: 100%;
    max-width: none;
    margin: 0;
}

.tech-image {
    flex: 1;
    display: flex; 
    align-items: flex-start;
    position: -webkit-sticky; 
    position: sticky;
    top: 150px;
    align-self: flex-start;
    height: fit-content;
}
.tech-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4); 
    object-fit: cover;
}

.tech-content {
    flex: 1;
    padding-top: 5px; 
}
.tech-content h3 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 20px;
    font-weight: 600;
}
.tech-content p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1rem;
}

/* SSS (FAQ) SECTION */
.faq-section { background-color: #fff; }
.faq-container {
    width: 100%;
    max-width: none;
    margin: 0;
}
.faq-item {
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 10px;
}
.faq-question {
    background-color: transparent;
    color: #444;
    cursor: pointer;
    padding: 20px 10px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 1.1rem;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}
.faq-question:hover, .faq-question.active { color: var(--gold); }
.faq-question .icon {
    font-size: 0.9rem;
    transition: transform 0.4s ease;
    color: #999;
}
.faq-question.active .icon {
    transform: rotate(90deg);
    color: var(--gold);
}
.faq-answer {
    padding: 0 15px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}
.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

/* =========================================
   7. İLETİŞİM, HARİTA & FOOTER
   ========================================= */
.contact-section { background-color: whitesmoke; }
.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.contact-box {
    background: white;
    padding: 40px 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid #eee;
    transition: transform 0.3s;
}
.contact-box:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
}
.icon-circle {
    width: 70px;
    height: 70px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
}
.wa-link {
    display: inline-block;
    margin-top: 15px;
    color: #25D366;
    font-weight: 600;
    text-decoration: none;
}
.address-link {
    text-decoration: none;
    color: #666;
    transition: color 0.3s ease;
}
.address-link:hover {
    color: #d4af37;
    text-decoration: underline;
}

/* HARİTA */
.map-section-wrapper {
    max-width: 1200px;
    margin: 60px auto 0 auto;
    text-align: center;
}
.map-title {
    font-size: 2rem;
    font-family: 'Voggie';
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}
.map-frame {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border: 5px solid #fff;
}
.map-frame iframe {
    display: block;
    filter: grayscale(20%) contrast(1.1);
    transition: all 0.3s ease;
}
.map-frame:hover iframe { filter: none; }

.btn-map-direction i {
    color: var(--gold);
    font-size: 1.2rem;
    animation: bounceArrow 2s infinite;
}
.btn-map-direction:hover {
    background-color: var(--gold);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}
.btn-map-direction:hover i { color: white; }

/* --- ÇOKLU HARİTA BUTONLARI --- */

.map-buttons-container {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

/* Ana Google Butonu (Büyük ve Dikkat Çekici) */
.btn-map-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #4285F4; /* Google Mavisi */
    color: white;
    text-decoration: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 400px;
}

.btn-map-main:hover {
    background-color: #3367D6;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(66, 133, 244, 0.4);
}

/* Alt Butonlar Grubu (Yandex ve Apple) */
.map-sub-buttons {
    display: flex;
    gap: 15px;
    width: 100%;
    max-width: 400px;
    justify-content: center;
}

.btn-map-sub {
    flex: 1; /* Eşit genişlik */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    color: white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.btn-map-sub:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* Yandex Rengi (Kırmızımsı) */
.btn-map-sub.yandex {
    background-color: #FC3F1D; 
}

/* Apple Rengi (Siyah/Gri) */
.btn-map-sub.apple {
    background-color: #222; 
}

/* --- MOBİL UYUMLULUK --- */
@media (max-width: 480px) {
    .btn-map-main {
        width: 100%;
        padding: 14px;
    }
    
    .map-sub-buttons {
        flex-direction: row; /* Yan yana kalsınlar ama sıkışırlarsa küçülsünler */
    }
    
    .btn-map-sub {
        font-size: 0.85rem;
        padding: 10px;
    }
}

/* =========================================
   PROFESYONEL FOOTER TASARIMI
   ========================================= */
.site-footer {
    background-color: #1a1a1a; /* Koyu Premium Zemin */
    color: #bbb;
    padding: 60px 0 0 0;
    font-size: 0.9rem;
    margin-top: 50px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* 3-4 Sütunlu Yapı */
    gap: 40px;
    padding: 0 20px 50px 20px;
    border-bottom: 1px solid #333; /* İnce ayırıcı çizgi */
}

/* Footer Başlıkları */
.footer-col h4 {
    color: var(--gold); /* Altın Rengi */
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer Linkleri */
.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #bbb;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: #fff;
    padding-left: 5px; /* Hover'da sağa kayma efekti */
}

/* Sosyal Medya İkonları */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #333;
    color: #fff;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--gold);
    transform: translateY(-3px);
}

/* Alt Bar (Copyright ve Bars Solutions) */
.footer-bottom {
    background-color: #111; /* Bir ton daha koyu */
    padding: 20px;
    text-align: center;
    color: #777;
    font-size: 0.85rem;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bars-signature {
    color: #999;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.bars-signature:hover {
    color: var(--gold); /* Üzerine gelince parlasın */
}

/* Mobilde ortalama */
@media (max-width: 768px) {
    .footer-container {
        text-align: center;
    }
    .social-links {
        justify-content: center;
    }
}

/* WHATSAPP FLOAT */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulseGreen 2s infinite;
}
.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}

/* =========================================
   DROPDOWN MENÜ (HİZMETLERİMİZ) - GÜNCEL
   ========================================= */

/* Dropdown Taşıyıcısı */
.dropdown-item {
    position: relative;
    padding-bottom: 10px;
    margin-bottom: -10px;
}

/* Dropdown Menü Kutusu (Genel Ayarlar) */
.dropdown-menu {
    display: none; /* Varsayılan GİZLİ */
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    min-width: 240px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 10px;
    padding: 10px 0;
    flex-direction: column;
    z-index: 1001;
    border-top: 3px solid var(--gold);
    max-height: 200px;
    overflow-y: auto;
}

/* Scrollbar Tasarımı */
.dropdown-menu::-webkit-scrollbar { width: 6px; }
.dropdown-menu::-webkit-scrollbar-track { background: #f1f1f1; border-radius: 0 10px 10px 0; }
.dropdown-menu::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 10px; }

/* Link Tasarımı */
.dropdown-menu li { margin: 0; width: 100%; }
.dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    font-size: 0.9rem;
    color: #555;
    transition: all 0.2s;
    border-bottom: 1px solid #f0f0f0;
}
.dropdown-menu li:last-child a { border-bottom: none; }
.dropdown-menu li a:hover {
    background-color: #f9f9f9;
    color: var(--gold);
    padding-left: 25px;
}



/* ---------------------------------------------------------
   KRİTİK DÜZELTME: HOVER EFEKTİ SADECE MASAÜSTÜNDE ÇALIŞSIN
   (Mobilde takılı kalmaması için)
   --------------------------------------------------------- */
@media (min-width: 969px) {
    .dropdown-item:hover .dropdown-menu {
        display: flex;
        animation: fadeInMenu 0.3s ease;
    }
}

@keyframes fadeInMenu {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* =========================================
   BÖLGE DETAY SAYFALARI (ARTICLE STİLİ)
   ========================================= */

/* Koyu Renkli, İnce Hero Alanı */
.page-hero {
    background-color: var(--dark); /* Koyu gri zemin */
    padding: 140px 5% 40px 5%; /* Navbar payı + boşluk */
    text-align: center;
    border-bottom: 3px solid var(--gold); /* Altına altın çizgi */
}

.page-hero h1 {
    color: #fff;
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: 1px;
}

/* Makale Konteynırı */
.article-section {
    padding: 60px 10%;
    background-color: #fff;
}

.article-container {
    max-width: 1000px;
    margin: 0 auto;
    /* "clearfix" etkisi için */
    display: flow-root; 
}

/* Metin Stilleri */
.article-text p {
    margin-bottom: 20px;
    line-height: 1.8; /* Rahat okuma için */
    color: #444;
    font-size: 1.05rem;
    text-align: justify; /* İki yana yasla (Kitap gibi) */
}

.article-text h3 {
    color: var(--dark);
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.5rem;
    border-left: 4px solid var(--gold);
    padding-left: 15px;
    overflow: hidden;
}

/* --- VİKİPEDİ TARZI RESİM (Floating Image) --- */
.article-image {
    float: left; /* Sola yasla */
    margin: 5px 30px 20px 0; /* Sağdan ve alttan boşluk bırak */
    width: 40%; /* Sayfanın %40'ını kaplasın */
    max-width: 400px;
    background: #f9f9f9;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.article-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 3px;
}

/* Resim Altı Açıklaması */
.img-caption {
    display: block;
    margin-top: 8px;
    font-size: 0.85rem;
    color: #666;
    text-align: center;
    font-style: italic;
}


/* =================================================================
   8. RESPONSIVE DÜZENLEMELER (TÜM MOBİL AYARLARI BURADA)
   ================================================================= */

/* --- CİHAZ BÖLÜMÜ FIX (Laptop/Tablet 1200px Altı) --- */
@media (max-width: 1200px) {
    .tech-container {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    .tech-image {
        position: static;
        width: 100%;
        display: flex;
        justify-content: center;
        margin-bottom: 20px;
    }
    .tech-image img {
        max-width: 600px;
        height: auto;
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }
    .tech-content { width: 100%; padding-top: 0; }

    .service-image {
        position: static;
        width: 100%;
        display: flex;
        justify-content: center;
        margin-bottom: 20px;
    }

    .service-image img {
        max-width: 600px;
        height: auto;
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }
}

/* --- TABLET VE MENÜ KIRILIMI (968px Altı) --- */
@media (max-width: 968px) {
    
    /* 1. Hamburger ve Menü */
    .hamburger { display: block; z-index: 1002; }
    .hamburger.active .bar:nth-child(2) { opacity: 0; }
    .hamburger.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .hamburger.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    .nav-group {
        position: fixed;
        left: 100%;
        top: 0;
        flex-direction: column;
        background-color: #fff;
        width: 100%;
        height: 100vh;
        justify-content: flex-start; /* İçerik yukarı hizalı */
        padding-top: 120px;
        padding-bottom: 50px;
        overflow-y: auto; /* Kaydırma */
        transition: 0.3s ease-in-out;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    }
    .nav-group.active { left: 0; }

    nav ul {
        flex-direction: column;
        text-align: center;
        margin-bottom: 40px;
    }
    nav ul li { margin: 15px 0; }
    nav ul li a { font-size: 1.3rem; }

    /* 2. Dropdown (Accordion Modu) */
    .dropdown-item {
        width: 100%;
        text-align: center;
        padding-bottom: 0;
        margin-bottom: 0;
    }
    /* Varsayılan GİZLİ */
    .dropdown-menu {
        display: none;
        position: static;
        box-shadow: none;
        border-top: none;
        background-color: #f9f9f9;
        width: 100%;
        padding: 0;
        margin-top: 10px;
        max-height: 250px; /* Çok uzamasın */
        overflow-y: auto;
    }
    /* Active sınıfı gelince AÇIK */
    .dropdown-item.active .dropdown-menu {
        display: flex;
        animation: fadeInMenu 0.3s ease;
    }
    .dropdown-menu li a {
        padding: 15px;
        font-size: 1rem;
        border-bottom: 1px solid #e0e0e0;
    }
    /* Ok İşareti Görünür */
    .dropdown-trigger i {
        display: inline-block !important; 
        transition: transform 0.3s ease;
        margin-left: 10px;
    }
    /* Ok Döner */
    .dropdown-item.active .dropdown-trigger i {
        transform: rotate(180deg);
    }

    /* 3. Genel Mobil Ayarlar */
    .hero h1 { font-size: 2.5rem; }
    .hero p { font-size: 1rem; padding: 0 15px; }
    .marketing-badge {
        font-size: 0.8rem;
        padding: 8px 15px;
        text-align: center;
        width: 90%;
        justify-content: center;
    }
    .section { padding: 60px 5%; }
    .section-title { font-size: 2rem; }
    /* --- YATAY KAYMAYI ENGELLEME (Çizgileri Gizle) --- */
    .section-title2 span::after,
    .section-title2-white span::after {
        display: none !important; /* Mobilde yan çizgiyi tamamen kaldır */
    }
    /* 2. Başlıkları Gold yap ve Ortala (Süs olsun diye) */
    .section-title2,
    .section-title2-white {
        color: var(--gold) !important; /* Beyaz veya siyah yerine Gold olsun */
        text-align: center !important; /* Çizgi gidince ortada daha tok durur */
        font-weight: 600;              /* Biraz kalınlaştıralım */
    }
    
    /* Eğer span içindeki yazı rengi değişmiyorsa bunu da ekle */
    .section-title2 span,
    .section-title2-white span {
        color: var(--gold) !important;
    }
}

/* --- MOBİL VE TABLET (768px Altı) --- */
@media (max-width: 768px) {
    .service-container {
        flex-direction: column;
        gap: 30px;
    }
    .service-content h3 { font-size: 1.5rem; text-align: center; }
    .service-content p, .service-features { text-align: left; }
    .service-image { width: 100%; }
    .btn-service { display: table; margin: 0 auto; }

    /* Harita */
    .btn-map-direction { font-size: 1rem; padding: 15px; }
    .map-frame iframe { height: 300px; }
    .map-title { font-size: 1.5rem; }

    /* Alt Sayfa Boşluk */
    .service-section { padding-top: 130px !important; }
     /* Makale Resmi Mobilde Ortala */
    .article-image {
        float: none; /* Yan yana durmayı iptal et */
        width: 100%; /* Tam genişlik */
        max-width: 100%;
        margin: 20px 0; /* Üstten alttan boşluk */
        display: block;
    }
    
    .page-hero h1 {
        font-size: 1.8rem; /* Mobilde başlığı küçült */
    }
    
    .article-text p {
        text-align: left; /* Mobilde iki yana yaslama bazen boşluk yapar, sola dayalı daha iyi */
    }
}

/* --- KÜÇÜK MOBİL EKRANLAR (480px Altı) --- */
@media (max-width: 480px) {
    .logo a img { height: 40px; }
    .logo a span { font-size: 18px; }
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 28px;
        bottom: 20px;
        right: 20px;
    }
}