:root {
    --primary-blue: #0284c7;
    --sky-blue: #38bdf8;
    --dark-blue: #0f172a;
    --light-bg: #f0f9ff;
    --white: #ffffff;
    --dark-text: #0f172a;
    --accent-gold: #f59e0b;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

body {
    background-color: var(--light-bg);
    color: var(--dark-text);
    overflow-x: hidden;
}

/* --- Header / Navigasyon --- */
/* --- Estetik Cam Efektli (Glassmorphism) Header & Navbar --- */
header {
    background: rgba(15, 23, 42, 0.75); /* Yarı saydam koyu zemin */
    backdrop-filter: blur(16px); /* Arka planı bulanıklaştıran cam efekti */
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(245, 158, 11, 0.2); /* İnce altın çizgi */
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.9rem 1.5rem; /* İnce ve kibar yükseklik */
}

/* Logo */
.logo {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--white);
    text-transform: uppercase;
}

.logo span {
    color: var(--sky-blue);
}

/* Menü Bağlantıları (Direkt Altın Sarısı & Hover'da Altı Çizili) */
.nav-links {
    display: flex;
    list-style: none;
    gap: 28px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--accent-gold) !important; /* Varsayılan Yüklenmede Altın Sarısı */
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 0.5px;
    transition: color 0.3s ease, opacity 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-gold) !important;
    text-decoration: underline !important; /* Fare Üzerine Geldiğinde Altı Çizili */
    opacity: 0.85;
}

/* Sağ Buton Grubu */
.auth-btns {
    display: flex;
    align-items: center;
    gap: 10px;
}

.auth-btns a {
    padding: 7px 18px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

/* Giriş Yap Butonu */
.btn-login {
    color: var(--sky-blue);
    border: 1px solid rgba(56, 189, 248, 0.4);
    background: rgba(56, 189, 248, 0.05);
}

.btn-login:hover {
    background-color: var(--sky-blue);
    color: var(--dark-blue);
    border-color: var(--sky-blue);
    text-decoration: none !important;
}

/* Kayıt Ol Butonu (Yeşil Vurgu Kuralı) */
.btn-register {
    background-color: #22c55e;
    color: var(--white);
    border: 1px solid #22c55e;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.25);
}

.btn-register:hover {
    background-color: #16a34a;
    border-color: #16a34a;
    text-decoration: none !important;
    box-shadow: 0 4px 16px rgba(34, 197, 94, 0.4);
}

/* Mobil Navigasyon Uyum */
@media (max-width: 768px) {
    .navbar {
        padding: 0.8rem 1rem;
    }
    
    .nav-links {
        gap: 15px;
    }
    
    .nav-links a {
        font-size: 0.8rem;
    }
}

/* --- Mavi Konseptli Büyüyen/Küçülen Janjanlı Slayt --- */
.hero-slider {
    position: relative;
    width: 100%;
    height: 540px;
    overflow: hidden;
    touch-action: pan-y;
    background-color: var(--dark-blue);
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s ease-in-out, visibility 1.2s;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

/* Arka Plan Görseli & Yavaş Büyüme (Ken Burns) Efekti */
/* --- Kesintisiz Büyüyen / Küçülen (Pulse) Görsel Efekti --- */
.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    /* Sürekli büyüyüp küçülen sonsuz animasyon */
    animation: infiniteZoom 12s ease-in-out infinite alternate;
}

@keyframes infiniteZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.18);
    }
}

.slide-1 .slide-bg {
    background-image: linear-gradient(to right, rgba(2, 132, 199, 0.8), rgba(15, 23, 42, 0.6)), url('https://picsum.photos/id/1015/1600/700');
}

.slide-2 .slide-bg {
    background-image: linear-gradient(to right, rgba(2, 132, 199, 0.8), rgba(15, 23, 42, 0.6)), url('https://picsum.photos/id/1028/1600/700');
}

.slide-3 .slide-bg {
    background-image: linear-gradient(to right, rgba(2, 132, 199, 0.8), rgba(15, 23, 42, 0.6)), url('https://picsum.photos/id/1039/1600/700');
}

.slide.active .slide-bg {
    transform: scale(1);
}

.slide-1 .slide-bg {
    background-image: linear-gradient(to right, rgba(2, 132, 199, 0.8), rgba(15, 23, 42, 0.6)), url('https://picsum.photos/id/1015/1600/700');
}

.slide-2 .slide-bg {
    background-image: linear-gradient(to right, rgba(2, 132, 199, 0.8), rgba(15, 23, 42, 0.6)), url('https://picsum.photos/id/1028/1600/700');
}

.slide-3 .slide-bg {
    background-image: linear-gradient(to right, rgba(2, 132, 199, 0.8), rgba(15, 23, 42, 0.6)), url('https://picsum.photos/id/1039/1600/700');
}

/* Slayt İçeriği & Tipografi */
.slide-overlay {
    position: relative;
    z-index: 2;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
}

.slide-content {
    max-width: 700px;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(56, 189, 248, 0.2);
    border: 1px solid var(--sky-blue);
    color: var(--sky-blue);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 30px;
    margin-bottom: 1rem;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.8s ease 0.2s;
}

.slide-content h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1rem;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.8s ease 0.4s;
}

.slide-content p {
    font-size: 1.15rem;
    color: #e2e8f0;
    margin-bottom: 2rem;
    line-height: 1.6;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.8s ease 0.6s;
}

/* Animasyonlu Altın Buton */
.btn-gold-anim {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 26px; /* Daha kompakt ve kibar boyut */
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--white);
    background: rgba(15, 23, 42, 0.4); /* Yarı saydam koyu zemin */
    border: 1px solid rgba(245, 158, 11, 0.6); /* İnce altın çerçeve */
    border-radius: 50px; /* Zarif oval yapı */
    text-decoration: none;
    backdrop-filter: blur(8px);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.8s ease 0.8s, opacity 0.8s ease 0.8s, background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.btn-gold-anim::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    20% { left: 100%; }
    100% { left: 100%; }
}

/* Slayt Aktifleştiğinde Yüzerek Gelen Metinler */
.slide.active .badge,
.slide.active .slide-content h1,
.slide.active .slide-content p,
.slide.active .btn-gold-anim {
    transform: translateY(0);
    opacity: 1;
}

/* --- Responsive Mobil & Tablet --- */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 12px;
    }

    .hero-slider {
        height: 420px;
    }

    .slide-content h1 {
        font-size: 2rem;
    }

    .slide-content p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .btn-gold-anim {
        padding: 10px 26px;
        font-size: 0.85rem;
    }
}
/* --- Hakkımızda / Biz Kimiz Alanı --- */
/* --- Hakkımızda / Biz Kimiz Alanı --- */
.about-section {
    position: relative;
    padding: 90px 0;
    background: linear-gradient(180deg, var(--dark-blue) 0%, #080d1a 100%);
    overflow: hidden;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

/* Sol Taraf: Görsel */
.about-image-wrapper {
    position: relative;
}

.about-img-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(245, 158, 11, 0.25);
}

.about-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.about-img-card:hover img {
    transform: scale(1.04);
}

/* Sağ Taraf: Metin İçeriği */
.about-header .sub-title {
    display: inline-block;
    color: var(--accent-gold);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.about-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 20px;
}

.about-header h2 span {
    color: var(--sky-blue);
}

/* Şık Blok Yapıları (Hakkımızda, Vizyon, Misyon) */
.about-block-group {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-block {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-left: 3px solid var(--accent-gold); /* Sol ince altın vurgu çizgisi */
    padding: 18px 24px;
    border-radius: 0 12px 12px 0;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.about-block:hover {
    background: rgba(245, 158, 11, 0.04);
    border-color: rgba(245, 158, 11, 0.3);
    border-left-color: var(--sky-blue);
    transform: translateX(5px);
}

.about-block h3 {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.about-block p {
    color: #94a3b8;
    font-size: 0.92rem;
    line-height: 1.6;
}

/* Responsive Uyumluluk */
@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .about-header h2 {
        font-size: 1.7rem;
    }
    
    .about-block {
        padding: 15px 18px;
    }
}
/* --- Öne Çıkan Ürünler Alanı --- */
.products-section {
    padding: 90px 0;
    background: #080d1a;
    position: relative;
}

.products-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Başlık */
.section-title-wrap {
    text-align: center;
    margin-bottom: 50px;
}

.section-title-wrap .sub-title {
    color: var(--accent-gold);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.section-title-wrap h2 {
    font-size: 2.2rem;
    color: var(--white);
    font-weight: 800;
}

.section-title-wrap h2 span {
    color: var(--sky-blue);
}

/* Grid Yapısı */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

/* Ürün Kartı */
.product-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    backdrop-filter: blur(10px);
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(245, 158, 11, 0.4);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(245, 158, 11, 0.1);
}

/* Rozet (İndirim / Yeni) */
.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent-gold);
    color: #0f172a;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 6px;
    text-transform: uppercase;
    z-index: 2;
}

/* Ürün Görseli */
.product-img-holder {
    position: relative;
    width: 100%;
    height: 220px;
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 15px;
}

.product-img-holder img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img-holder img {
    transform: scale(1.08);
}

/* İçerik */
.product-details {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-category {
    font-size: 0.75rem;
    color: var(--sky-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
    font-weight: 600;
}

.product-title {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}

/* Fiyat Alanı */
.product-price-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-top: auto;
    margin-bottom: 18px;
}

.current-price {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--accent-gold);
}

.old-price {
    font-size: 0.9rem;
    color: #64748b;
    text-decoration: line-through;
}

/* Buton Grubu */
.product-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.btn-add-cart {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #d97706 100%);
    color: #0f172a;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-add-cart:hover {
    filter: brightness(1.1);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.btn-add-cart:active {
    transform: scale(0.98);
}

/* Responsive */
@media (max-width: 576px) {
    .section-title-wrap h2 {
        font-size: 1.8rem;
    }
}
/* --- Hizmetlerimiz Alanı --- */
.services-section {
    padding: 90px 0;
    background: linear-gradient(180deg, #080d1a 0%, var(--dark-blue) 100%);
    position: relative;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Grid Yapısı */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

/* Hizmet Kartı */
.service-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 35px 25px;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    backdrop-filter: blur(10px);
    overflow: hidden;
}

/* Kart Üzerine Gelindiğinde (Hover) */
.service-card:hover {
    transform: translateY(-8px);
    background: rgba(245, 158, 11, 0.03);
    border-color: rgba(245, 158, 11, 0.35);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 20px rgba(245, 158, 11, 0.08);
}

/* Sol Üst/Sağ Üst Şık Vurgu Çizgisi */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), var(--sky-blue));
    transition: width 0.4s ease;
}

.service-card:hover::before {
    width: 100%;
}

/* İkon Alanı */
.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.25);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--accent-gold);
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    background: var(--accent-gold);
    color: #0f172a;
    transform: scale(1.05) rotate(-3deg);
}

.service-icon svg {
    width: 30px;
    height: 30px;
    fill: currentColor;
}

/* Başlık ve Açıklama */
.service-title {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.service-description {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

/* Detay / İletişim Bağlantısı */
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--sky-blue);
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s ease, color 0.3s ease;
}

.service-link:hover {
    color: var(--accent-gold);
    gap: 12px;
    text-decoration: underline !important;
}

/* Responsive */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }
}
/* --- Sık Sorulan Sorular (SSS) Alanı --- */
.faq-section {
    padding: 90px 0;
    background: var(--dark-blue);
    position: relative;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Accordion Yapısı */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(245, 158, 11, 0.3);
}

.faq-item.active {
    border-color: var(--accent-gold);
    background: rgba(245, 158, 11, 0.03);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Başlık / Soru Butonu */
.faq-question {
    width: 100%;
    padding: 22px 28px;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: color 0.3s ease;
}

.faq-item.active .faq-question {
    color: var(--accent-gold);
}

/* Sağdaki Artı/Eksi İkonu */
.faq-icon {
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--white);
    transition: all 0.4s ease;
}

.faq-item.active .faq-icon {
    background: var(--accent-gold);
    color: #0f172a;
    transform: rotate(135deg); /* + simgesini x simgesine çevirir */
}

.faq-icon svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

/* Cevap Alanı ve Animasyon */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
    padding: 0 28px;
}

.faq-item.active .faq-answer {
    max-height: 500px; /* İçerik yüksekliğine göre açılır */
    padding: 0 28px 22px 28px;
    transition: max-height 0.4s cubic-bezier(0.5, 0, 0.1, 1);
}

.faq-answer p {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.7;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 15px;
}

/* Responsive */
@media (max-width: 576px) {
    .faq-question {
        padding: 18px 20px;
        font-size: 0.95rem;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 18px 20px;
    }
}
/* --- Blog / İlginç Bilgiler Alanı --- */
.blog-section {
    padding: 90px 0;
    background: linear-gradient(180deg, var(--dark-blue) 0%, #080d1a 100%);
    position: relative;
}

.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Grid Yapısı */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Blog Kartı */
.blog-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
    position: relative;
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: rgba(245, 158, 11, 0.4);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 20px rgba(245, 158, 11, 0.08);
}

/* Görsel Alanı */
.blog-img-holder {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.blog-img-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-img-holder img {
    transform: scale(1.08);
}

/* Kategori & Okuma Süresi Rozeti */
.blog-meta-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(245, 158, 11, 0.4);
    color: var(--accent-gold);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* İçerik Detayları */
.blog-details {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-date {
    font-size: 0.8rem;
    color: var(--sky-blue);
    margin-bottom: 8px;
    font-weight: 600;
}

.blog-title {
    color: var(--white);
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-title {
    color: var(--accent-gold);
}

.blog-excerpt {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Devamını Oku Linki */
.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}

.blog-read-more svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-read-more {
    color: var(--accent-gold);
}

.blog-card:hover .blog-read-more svg {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}
/* --- Artist & Janjanlı İletişim Alanı --- */
.contact-section {
    padding: 90px 0;
    background: #080d1a;
    position: relative;
    overflow: hidden;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: start;
}

/* Sol Taraf: İletişim Bilgileri & Kartlar */
.contact-info-boxes {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    padding: 24px;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: rgba(245, 158, 11, 0.4);
    transform: translateX(6px);
    background: rgba(245, 158, 11, 0.03);
}

.info-icon {
    width: 52px;
    height: 52px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    flex-shrink: 0;
}

.info-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.info-text h4 {
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.info-text p, .info-text a {
    color: #94a3b8;
    font-size: 0.9rem;
    text-decoration: none;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.info-text a:hover {
    color: var(--accent-gold);
}

/* Sağ Taraf: Form Kartı */
.contact-form-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    position: relative;
}

.contact-form-card h3 {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.contact-form-card p {
    color: #94a3b8;
    font-size: 0.9rem;
    margin-bottom: 28px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    color: #cbd5e1;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.form-control {
    width: 100%;
    padding: 13px 16px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--white);
    font-size: 0.92rem;
    outline: none;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 12px rgba(245, 158, 11, 0.2);
    background: rgba(15, 23, 42, 0.8);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Gönder Butonu (Animasyonlu Altın Rengi Kuralı Korundu) */
.btn-contact-submit {
    grid-column: span 2;
    padding: 14px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #d97706 100%);
    color: #0f172a;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.25);
}

.btn-contact-submit:hover {
    filter: brightness(1.1);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
    transform: translateY(-2px);
}

.btn-contact-submit:active {
    transform: translateY(0);
}

/* Bildirim Kutusu (Yeşil Alert Kuralına Uygun) */
.form-alert-success {
    display: none;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid #22c55e;
    color: #4ade80;
    padding: 12px;
    border-radius: 8px;
    font-size: 0.88rem;
    text-align: center;
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width, .btn-contact-submit {
        grid-column: span 1;
    }
    
    .contact-form-card {
        padding: 25px 20px;
    }
}
/* --- Harita & Gelgitli Fotoğraf Alanı --- */
.map-photo-section {
    padding: 0 0 90px 0;
    background: #080d1a;
    position: relative;
}

.map-photo-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.map-photo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* Sol Taraf: Harita Çerçevesi */
.map-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 420px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.map-card iframe {
    width: 100%;
    height: 100%;
    border: 0;
    /* Koyu temaya uyum sağlaması için haritaya hafif filtre */
    filter: grayscale(0.2) contrast(1.1) opacity(0.9);
    transition: filter 0.3s ease;
}

.map-card:hover iframe {
    filter: grayscale(0) contrast(1) opacity(1);
}

/* Sağ Taraf: Gelgitli / Janjanlı Çerçeveli Fotoğraf */
/* --- Sadece 2 Köşesi Vurgulu Köşe Çerçeveli Fotoğraf --- */
.photo-glow-wrapper {
    position: relative;
    border-radius: 20px;
    height: 420px;
    padding: 10px; /* Çerçeve ile resim arasındaki boşluk */
}

/* Sol Üst Köşe Çerçevesi */
.photo-glow-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    border-top: 3px solid var(--accent-gold);
    border-left: 3px solid var(--accent-gold);
    border-top-left-radius: 16px;
    transition: all 0.4s ease;
    animation: cornerPulse 4s ease-in-out infinite alternate;
}

/* Sağ Alt Köşe Çerçevesi */
.photo-glow-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 60px;
    border-bottom: 3px solid var(--accent-gold);
    border-right: 3px solid var(--accent-gold);
    border-bottom-right-radius: 16px;
    transition: all 0.4s ease;
    animation: cornerPulse 4s ease-in-out infinite alternate;
}

/* Köşelerin Hafif Parlama / Nefes Alma Efekti */
@keyframes cornerPulse {
    0% {
        opacity: 0.6;
        filter: drop-shadow(0 0 2px var(--accent-gold));
    }
    100% {
        opacity: 1;
        filter: drop-shadow(0 0 10px var(--accent-gold));
    }
}

/* Hover Durumunda Köşelerin Genişlemesi */
.photo-glow-wrapper:hover::before,
.photo-glow-wrapper:hover::after {
    width: 90px;
    height: 90px;
    border-color: var(--sky-blue);
}

.photo-inner-card {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 14px;
    overflow: hidden;
    background: #0f172a;
}

.photo-inner-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.photo-glow-wrapper:hover .photo-inner-card img {
    transform: scale(1.06);
}

/* Fotoğraf Üzerindeki Cam Efektli Etiket */
.photo-overlay-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 16px 20px;
    border-radius: 12px;
    color: var(--white);
}

.photo-overlay-badge h5 {
    color: var(--accent-gold);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.photo-overlay-badge p {
    font-size: 0.85rem;
    color: #cbd5e1;
    margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .map-photo-grid {
        grid-template-columns: 1fr;
    }
    
    .map-card, .photo-glow-wrapper {
        height: 350px;
    }
}
/* --- Artist & Janjanlı Footer Alanı --- */
/* --- Artist Footer Alanı (Güncellenmiş 3 Sütun) --- */
/* --- Artist Footer Alanı (Yenilenmiş Düzen) --- */
.site-footer {
    background: #040711;
    position: relative;
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #94a3b8;
    overflow: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1.2fr;
    gap: 45px;
    padding-bottom: 50px;
}

/* Sol Sütun: Firma İsmi, Tanıtım Metni ve Logo */
.footer-widget .footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    text-decoration: none;
    display: inline-block;
    margin-bottom: 14px;
}

.footer-widget .footer-logo span {
    color: var(--accent-gold);
}

.footer-widget p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 15px;
}

.footer-brand-logo img {
    max-height: 48px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(245, 158, 11, 0.2));
}

/* Sütun Başlıkları */
.widget-title {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: var(--accent-gold);
}

/* Hızlı Menü Linkleri */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--accent-gold);
    transform: translateX(5px);
}

/* Sağ Sütun: İletişim Bilgileri Listesi */
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.88rem;
    line-height: 1.5;
}

.footer-contact-list svg {
    width: 18px;
    height: 18px;
    fill: var(--accent-gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-list a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-list a:hover {
    color: var(--accent-gold);
}

/* Bizi Takip Edin & Sosyal Medya */
.social-block-title {
    color: var(--white);
    font-size: 0.92rem;
    font-weight: 700;
    margin-bottom: 12px;
    display: block;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-gold);
    color: #0f172a;
    border-color: var(--accent-gold);
    transform: translateY(-3px);
}

.social-links svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* Telif Hakkı Barı */
.footer-bottom {
    background: #02040a;
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
}

.footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright-text span {
    color: var(--accent-gold);
    font-weight: 600;
}

.footer-legal-links {
    display: flex;
    gap: 20px;
}

.footer-legal-links a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: var(--accent-gold);
}

/* Responsive */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}