/* ═══════════════════════════════════════
   SECTIONS.CSS — Tüm Sayfa Bölümleri
   Öz Ünlü Yangın | Ckr Tech
═══════════════════════════════════════ */

/* ════════════════════════
   HERO
════════════════════════ */
.hero-full-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -2; /* İçeriklerin arkasında kalması için */
    overflow: hidden;
}

.hero-full-bg img {
    width: 100%;
    height: 100%;
    /* BU KOD HAYAT KURTARIR: Resim esnemez, sadece dışarı taşan yerleri kırpılır */
    object-fit: cover; 
    object-position: center;
    /* İsteğe bağlı: Lüks ve sinematik yavaş yakınlaşma efekti */
    animation: heroImageScale 20s linear infinite alternate; 
}

/* Görselin üzerine binen koyu renkli cam katmanı (Yazıların okunması için şart) */
.hero-overlay {
    position: absolute;
    inset: 0;
    /* Üst tarafı hafif şeffaf, alt tarafı site arka plan rengiyle kaynaşan yapı */
    background: linear-gradient(to bottom, rgba(3,3,3,0.5) 0%, rgba(3,3,3,0.95) 100%);
    z-index: 1;
}

/* Yakınlaşma Animasyonu */
@keyframes heroImageScale {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

/* Hero içindeki yazıların arka planın önünde kalmasını garantilemek için */
.hero-eyebrow, .hero-title, .hero-sub, .hero-actions, .scroll-indicator {
    position: relative;
    z-index: 10;
}
/* ─── TAM EKRAN HERO ARKA PLANI VE MANTIK ─── */
.hero-full-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -2; /* Görseli yazıların arkasına atar */
    overflow: hidden;
}

.hero-full-bg .hero-img {
    width: 100%;
    height: 100%;
    /* En kritik kod: Resmi esnetmez, ekranın en-boy oranına göre fazla kenarları kırpar */
    object-fit: cover; 
    object-position: center;
    /* Lüks hissiyat katan yavaş sinematik yakınlaşma efekti */
    animation: heroImageScale 20s linear infinite alternate; 
}

/* Görselin üzerine binen koyu renkli cam katmanı (Yazıların okunması için şarttır) */
.hero-overlay {
    position: absolute;
    inset: 0;
    /* Üst tarafı hafif şeffaf, alt tarafı site arka plan rengiyle (dark mode) kaynaşan yapı */
    background: linear-gradient(to bottom, rgba(3,3,3,0.5) 0%, rgba(3,3,3,0.95) 100%);
    z-index: 1;
}

/* Yakınlaşma Animasyonu */
@keyframes heroImageScale {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

/* Hero içindeki yazıların arka planın (ve overlay'in) önünde kalmasını garantilemek için */
.hero-eyebrow, .hero-title, .hero-sub, .hero-actions, .scroll-indicator {
    position: relative;
    z-index: 10;
}
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 160px 24px 120px;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 50%, rgba(155,35,53,0.08) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 80% 20%, rgba(212,175,55,0.04) 0%, transparent 50%);
    pointer-events: none;
}
.hero-noise {
    position: absolute;
    inset: 0;
    opacity: 0.4;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeUp 1s var(--ease-out-expo) 1.8s forwards;
}
.hero-eyebrow-line { width: 40px; height: 1px; background: var(--gold); }
.hero-eyebrow span {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.8rem, 6.5vw, 6rem);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -1px;
    margin-bottom: 28px;
    max-width: 900px;
    opacity: 0;
    animation: fadeUp 1.2s var(--ease-out-expo) 2s forwards;
}
.hero-title em {
    font-style: italic;
    color: var(--accent-light);
    position: relative;
}
.hero-title em::after {
    content: '';
    position: absolute;
    bottom: 4px; left: 0;
    width: 100%; height: 3px;
    background: var(--accent-light);
    opacity: 0.3;
}

.hero-sub {
    font-size: clamp(1rem, 1.3vw, 1.2rem);
    color: var(--text-secondary);
    max-width: 500px;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 52px;
    opacity: 0;
    animation: fadeUp 1s var(--ease-out-expo) 2.2s forwards;
}

.hero-visual {
    position: relative;
    width: 320px; height: 320px;
    margin-bottom: 52px;
    opacity: 0;
    animation: scaleIn 1.4s var(--ease-out-expo) 1.9s forwards;
}
.hero-visual-ring {
    position: absolute;
    inset: -30px;
    border-radius: 50%;
    border: 1px solid var(--border);
    animation: rotate 20s linear infinite;
}
.hero-visual-ring::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    border: 1px solid transparent;
    border-top-color: var(--accent-light);
    border-right-color: var(--accent-light);
    opacity: 0.5;
}
.hero-visual-inner {
    position: relative;
    width: 100%; height: 100%;
    border-radius: 32px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.03);
}
.hero-visual-inner img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: contrast(1.1) brightness(0.9) saturate(1.05);
    transition: transform 8s ease;
}
.hero-visual:hover .hero-visual-inner img { transform: scale(1.08); }
.hero-visual-inner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(155,35,53,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-float {
    position: absolute;
    background: rgba(17,17,17,0.9);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 10px 18px;
    font-size: 0.8rem;
    font-weight: 500;
    backdrop-filter: blur(20px);
    white-space: nowrap;
    animation: float 5s ease-in-out infinite;
    letter-spacing: 0.5px;
}
.hero-float-1 { bottom: -12px; left: -40px; animation-delay: 0s;  color: var(--text-secondary); }
.hero-float-2 { top:    -12px; right: -40px; animation-delay: 2s;  color: var(--gold); }
.hero-float .dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--gold);
    display: inline-block;
    margin-right: 8px;
    box-shadow: 0 0 8px var(--gold);
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    opacity: 0;
    animation: fadeUp 1s var(--ease-out-expo) 2.4s forwards;
}


.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%; left: 0;
    width: 100%; height: 100%;
    background: var(--gold);
    animation: scrollDrop 2.5s ease-in-out infinite;
}

/* ════════════════════════
   STATS
════════════════════════ */
.stats-section {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg-elevated);
    position: relative;
}
.stats-section::before {
    content: '';
    position: absolute;
    top: 0; left: 50%; transform: translateX(-50%);
    width: 200px; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.5;
}
.stats-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.stat-item {
    padding: 48px 24px;
    text-align: center;
    position: relative;
}
.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0; top: 30%; bottom: 30%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--border-light), transparent);
}
.stat-num {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    font-weight: 500;
    color: var(--text);
    line-height: 1;
    margin-bottom: 8px;
}
.stat-num em {
    color: var(--accent-light);
    font-style: normal;
    font-size: 1.8rem;
    vertical-align: super;
}
.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ════════════════════════
   FEATURES
════════════════════════ */
.features-bg {
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 48px 36px;
    position: relative;
    overflow: hidden;
    transition: all 0.6s var(--ease-out-expo);
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.6s;
}
.feature-card:hover { border-color: rgba(212,175,55,0.2); transform: translateY(-8px); box-shadow: 0 30px 60px rgba(0,0,0,0.4); }
.feature-card:hover::before { opacity: 0.5; }

.feature-icon {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, rgba(155,35,53,0.15), rgba(155,35,53,0.05));
    border: 1px solid rgba(155,35,53,0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-light);
    margin-bottom: 28px;
    transition: all 0.4s;
}
.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, rgba(155,35,53,0.25), rgba(155,35,53,0.1));
    box-shadow: 0 0 30px var(--accent-glow);
    transform: scale(1.05);
}
.feature-icon svg { width: 24px; height: 24px; stroke-width: 1.5; }
.feature-card h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}
.feature-card p { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.7; font-weight: 300; }

/* ════════════════════════
   PRODUCTS — masaüstü grid + mobil carousel
════════════════════════ */

/* ── Sarmalayıcı: masaüstünde normal, mobilde yatay kayan ── */
.products-scroll-wrapper {
    position: relative;
}

/* ── Grid: masaüstü 4 sütun ── */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* ── Kart ── */
.product-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border);
    aspect-ratio: 3/4.5;
    cursor: pointer;
    transition: all 0.6s var(--ease-out-expo);
    flex-shrink: 0; /* carousel modunda küçülmesin */
}
.product-card:hover {
    border-color: rgba(155,35,53,0.3);
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(155,35,53,0.1);
}

.product-img-wrap {
    width: 100%; height: 68%;
    overflow: hidden;
    position: relative;
}
.product-img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1s var(--ease-out-expo), filter 0.6s;
    filter: grayscale(30%) contrast(1.05) brightness(0.9);
}
.product-card:hover .product-img { transform: scale(1.1); filter: grayscale(0%) contrast(1.05) brightness(0.95); }
.product-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(3,3,3,0.9) 100%);
    pointer-events: none;
}

.product-info {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 24px;
    z-index: 2;
}
.product-tag {
    display: inline-block;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s 0.1s;
}
.product-card:hover .product-tag { opacity: 1; transform: translateY(0); }
.product-info h3 { font-family: var(--font-serif); font-size: 1.15rem; font-weight: 500; margin-bottom: 6px; letter-spacing: -0.2px; }
.product-info p  { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 16px; font-weight: 300; }

.product-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(155,35,53,0.15);
    border: 1px solid rgba(155,35,53,0.3);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--text);
    transition: all 0.4s var(--ease-out-expo);
    opacity: 0;
    transform: translateY(10px);
}
.product-card:hover .product-cta { opacity: 1; transform: translateY(0); transition-delay: 0.15s; }
.product-cta:hover { background: var(--accent); border-color: var(--accent); box-shadow: 0 8px 24px var(--accent-glow); }
.product-cta svg { width: 14px; height: 14px; }

/* ── Carousel dot'lar — sadece mobilde görünür ── */
.carousel-dots {
    display: none;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}
.carousel-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--border-light);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}
.carousel-dot.active { background: var(--gold); width: 20px; border-radius: 3px; }
/* ════════════════════════
   TEKLİF FORMU
════════════════════════ */
.quote-bg {
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.quote-wrapper {
    max-width: 800px;
    margin: 0 auto;
}
.quote-form {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 32px;
    padding: 48px;
    position: relative;
    overflow: hidden;
    transition: all 0.6s var(--ease-out-expo);
}
.quote-form:hover {
    border-color: var(--border-light);
    box-shadow: 0 40px 80px rgba(0,0,0,0.3);
}
.quote-form::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), var(--accent-light), var(--gold), transparent);
    opacity: 0.6;
}
.quote-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}
.quote-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.quote-field.full { grid-column: 1 / -1; }
.quote-field label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
}
.quote-field select,
.quote-field input,
.quote-field textarea {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 14px 18px;
    color: var(--text);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    transition: all 0.3s var(--ease-smooth);
    outline: none;
}
.quote-field select:focus,
.quote-field input:focus,
.quote-field textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-dim);
}
.quote-field select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23D4AF37' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}
.quote-field textarea {
    resize: vertical;
    min-height: 100px;
}
.quote-submit {
    width: 100%;
    margin-top: 8px;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border: none;
    color: #fff;
    padding: 18px 36px;
    font-size: 0.85rem;
}
.quote-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px var(--accent-glow);
}

@media (max-width: 768px) {
    .quote-form { padding: 32px 24px; }
    .quote-grid { grid-template-columns: 1fr; }
}
/* ════════════════════════
   SERTİFİKALAR
════════════════════════ */
.certs-bg {
    background: var(--bg);
}
.certs-scroll-wrapper {
    position: relative;
}
.certs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.cert-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.6s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}
.cert-card:hover {
    border-color: rgba(212,175,55,0.2);
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}
.cert-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.6s;
}
.cert-card:hover::before { opacity: 0.5; }
.cert-preview {
    width: 64px; height: 64px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--gold-dim), rgba(212,175,55,0.05));
    border: 1px solid rgba(212,175,55,0.15);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: all 0.4s;
}
.cert-card:hover .cert-preview {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(212,175,55,0.15);
}
.cert-preview svg { width: 28px; height: 28px; stroke-width: 1.5; }
.cert-card h3 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 8px;
    letter-spacing: -0.2px;
}
.cert-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    font-weight: 300;
}

@media (max-width: 1024px) {
    .certs-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .certs-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding: 4px 4px 16px;
        scrollbar-width: none;
    }
    .certs-grid::-webkit-scrollbar { display: none; }
    .cert-card {
        min-width: 280px;
        flex-shrink: 0;
        scroll-snap-align: start;
    }
}
/* ════════════════════════
   HARİTA
════════════════════════ */
.map-bg {
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.map-wrapper {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}
.turkey-map {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 32px;
    padding: 40px;
    overflow: hidden;
    transition: all 0.6s var(--ease-out-expo);
}
.turkey-map:hover {
    border-color: var(--border-light);
    box-shadow: 0 40px 80px rgba(0,0,0,0.3);
}
.map-svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3));
}
.map-land {
    fill: var(--bg-surface);
    stroke: var(--border-light);
    stroke-width: 1;
    transition: all 0.4s;
}
.turkey-map:hover .map-land {
    fill: var(--bg-card);
    stroke: var(--gold);
    stroke-width: 1.5;
}
.map-pin {
    cursor: pointer;
    transition: all 0.3s var(--ease-smooth);
}
.map-pin:hover { transform: scale(1.2); }
.map-pin.active circle:first-child {
    fill: var(--gold);
    filter: drop-shadow(0 0 8px var(--gold));
}
.map-pin text {
    font-family: var(--font-sans);
    font-weight: 500;
    transition: all 0.3s;
}
.map-pin:hover text {
    fill: var(--gold);
    font-weight: 600;
}
.map-legend {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 32px;
}
.map-legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}
.map-legend-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
}
.map-legend-dot.gold   { background: var(--gold); box-shadow: 0 0 8px var(--gold); }
.map-legend-dot.accent { background: var(--accent-light); box-shadow: 0 0 8px var(--accent-light); }

@media (max-width: 768px) {
    .turkey-map { padding: 24px; }
    .map-legend { gap: 20px; }
}
/* ════════════════════════
   BLOG
════════════════════════ */
.blog-bg {
    background: var(--bg);
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.6s var(--ease-out-expo);
}
.blog-card:hover {
    border-color: var(--border-light);
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}
.blog-img-wrap {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}
.blog-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1s var(--ease-out-expo), filter 0.6s;
    filter: grayscale(20%) contrast(1.05) brightness(0.9);
}
.blog-card:hover .blog-img-wrap img {
    transform: scale(1.1);
    filter: grayscale(0%) contrast(1.05) brightness(0.95);
}
.blog-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(3,3,3,0.8) 100%);
    pointer-events: none;
}
.blog-content {
    padding: 28px;
}
.blog-date {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
    display: block;
}
.blog-content h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 12px;
    line-height: 1.3;
    letter-spacing: -0.2px;
}
.blog-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
    font-weight: 300;
}
.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: 0.5px;
    transition: all 0.3s;
}
.blog-link:hover {
    color: var(--gold);
    gap: 12px;
}
.blog-link svg {
    width: 14px; height: 14px;
    transition: transform 0.3s;
}
.blog-link:hover svg { transform: translateX(4px); }

@media (max-width: 1024px) {
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .blog-grid { grid-template-columns: 1fr; }
    .blog-img-wrap { height: 200px; }
}
/* ════════════════════════
   GALERİ / SLIDER
════════════════════════ */
.gallery-bg {
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.gallery-scroll-wrapper {
    position: relative;
}
.gallery-grid {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 4px 4px 24px;
    scrollbar-width: none;
}
.gallery-grid::-webkit-scrollbar { display: none; }
.gallery-card {
    min-width: 300px;
    max-width: 300px;
    flex-shrink: 0;
    scroll-snap-align: start;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.6s var(--ease-out-expo);
    cursor: pointer;
}
.gallery-card:hover {
    border-color: rgba(155,35,53,0.3);
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}
.gallery-img-wrap {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
}
.gallery-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1s var(--ease-out-expo), filter 0.6s;
    filter: grayscale(30%) contrast(1.05) brightness(0.85);
}
.gallery-card:hover .gallery-img-wrap img {
    transform: scale(1.1);
    filter: grayscale(0%) contrast(1.05) brightness(0.95);
}
.gallery-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(3,3,3,0.9) 100%);
    pointer-events: none;
}
.gallery-info {
    padding: 24px;
    position: relative;
}
.gallery-info h3 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 8px;
    letter-spacing: -0.2px;
}
.gallery-info p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    font-weight: 300;
}

@media (max-width: 768px) {
    .gallery-card { min-width: 260px; max-width: 260px; }
    .gallery-img-wrap { height: 240px; }
}

/* ── Mobil: yatay kaydırmalı carousel ── */
@media (max-width: 768px) {
    .products-grid {
        display: flex;                    /* grid → flex */
        flex-direction: row;
        gap: 16px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 4px 4px 16px;           /* gölge kırılmasın */
        scrollbar-width: none;            /* Firefox */
        /* scroll padding: ilk kart tam görünsün */
        scroll-padding-left: 0;
    }
    .products-grid::-webkit-scrollbar { display: none; } /* Chrome/Safari */

    .product-card {
        width: 72vw;                      /* 3–4 kart aynı anda görünür */
        max-width: 260px;
        aspect-ratio: 3/4.5;
        scroll-snap-align: start;
        flex-shrink: 0;
        /* hover lift kaldır — parmak için anlamsız */
    }
    .product-card:hover { transform: none; }

    /* Dot göster */
    .carousel-dots { display: flex; }

    /* Masaüstünde gizli idi, mobilde göster */
    .product-tag  { opacity: 1; transform: none; }
    .product-cta  { opacity: 1; transform: none; }
}

@media (max-width: 480px) {
    .product-card { width: 80vw; max-width: 300px; }
}

/* ════════════════════════
   PASS (Kullanım)
════════════════════════ */
.pass-bg {
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}
.pass-watermark {
    font-family: var(--font-serif);
    font-size: clamp(6rem, 15vw, 12rem);
    font-weight: 500;
    color: transparent;
    -webkit-text-stroke: 1px var(--border-light);
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    opacity: 0.4;
    pointer-events: none;
    user-select: none;
}
.pass-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
    z-index: 1;
}
.pass-card {
    text-align: center;
    padding: 40px 20px;
    position: relative;
}
.pass-letter {
    font-family: var(--font-serif);
    font-size: 4rem;
    font-weight: 500;
    color: var(--accent-light);
    line-height: 1;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}
.pass-letter::after {
    content: '';
    position: absolute;
    bottom: 4px; left: -4px; right: -4px;
    height: 8px;
    background: var(--accent);
    opacity: 0.2;
    z-index: -1;
}
.pass-card h3 { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 500; margin-bottom: 8px; }
.pass-card p  { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; font-weight: 300; }

/* ════════════════════════
   CONTACT (Yeni Layout)
════════════════════════ */
.contact-bg {
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 28px;
    transition: all 0.4s var(--ease-out-expo);
}
.contact-card:hover {
    border-color: var(--border-light);
    transform: translateX(8px);
}
.contact-icon {
    width: 48px; height: 48px;
    background: var(--bg-surface);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-light);
    margin-bottom: 16px;
}
.contact-icon svg { width: 20px; height: 20px; }
.contact-card h3 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 8px;
}
.contact-link {
    font-size: 1rem;
    color: var(--text);
    font-weight: 500;
    display: block;
    margin-bottom: 4px;
    transition: color 0.3s;
}
.contact-link:hover { color: var(--gold); }
.contact-meta {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}
.contact-social {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}
.social-btn {
    width: 48px; height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    color: var(--text-secondary);
    transition: all 0.4s var(--ease-smooth);
}
.social-btn:hover {
    transform: translateY(-3px);
    border-color: var(--border-light);
}
.social-btn.whatsapp:hover {
    background: rgba(37,211,102,0.1);
    color: #25d366;
    border-color: #25d366;
}
.social-btn.instagram:hover {
    background: rgba(225,48,108,0.1);
    color: #e1306c;
    border-color: #e1306c;
}
.contact-map {
    height: 100%;
    min-height: 400px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border);
}

@media (max-width: 1024px) {
    .contact-grid { grid-template-columns: 1fr; }
    .contact-map { min-height: 300px; }
}

.cc-lux-head { text-align: center; margin-bottom: 40px; }
.cc-lux-avatar {
    width: 80px; height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #5a1018);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    box-shadow: 0 10px 40px var(--accent-glow);
}
.cc-lux-avatar svg { width: 32px; height: 32px; }
.cc-lux-head h2 { font-family: var(--font-serif); font-size: 1.8rem; font-weight: 500; margin-bottom: 6px; }
.cc-lux-head p  { font-size: 0.9rem; color: var(--text-secondary); font-weight: 300; }

.cc-lux-rows { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.cc-lux-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: all 0.4s var(--ease-out-expo);
}
.cc-lux-row:hover { background: rgba(255,255,255,0.04); border-color: var(--border-light); transform: translateX(6px); }
.cc-lux-icon {
    width: 42px; height: 42px;
    background: var(--bg-surface);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-light);
    flex-shrink: 0;
    transition: all 0.3s;
}
.cc-lux-row:hover .cc-lux-icon { background: var(--accent); color: #fff; }
.cc-lux-icon svg { width: 18px; height: 18px; stroke-width: 1.5; }
.cc-lux-label { font-size: 0.6rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 2px; }
.cc-lux-val   { font-size: 0.95rem; font-weight: 500; color: var(--text); transition: color 0.3s; letter-spacing: 0.2px; }
.cc-lux-row:hover .cc-lux-val { color: var(--gold); }

.cc-lux-btns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.cc-lux-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: 16px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    border: none;
    transition: all 0.4s var(--ease-out-expo);
    font-family: var(--font-sans);
}
.cc-lux-btn svg          { width: 18px; height: 18px; flex-shrink: 0; }
.cc-lux-btn-primary      { background: var(--text); color: var(--bg); grid-column: 1 / -1; }
.cc-lux-btn-primary:hover{ transform: translateY(-2px); box-shadow: 0 12px 32px rgba(255,255,255,0.12); }
.cc-lux-btn-wa           { background: rgba(37,211,102,0.08); color: #25d366; border: 1px solid rgba(37,211,102,0.2); }
.cc-lux-btn-wa:hover     { background: rgba(37,211,102,0.15); transform: translateY(-2px); }
.cc-lux-btn-ig           { background: rgba(225,48,108,0.08);  color: #e1306c; border: 1px solid rgba(225,48,108,0.2); }
.cc-lux-btn-ig:hover     { background: rgba(225,48,108,0.15);  transform: translateY(-2px); }
.cc-lux-btn-map          { background: var(--bg-surface); color: var(--text-secondary); border: 1px solid var(--border); }
.cc-lux-btn-map:hover    { border-color: var(--border-light); color: var(--text); transform: translateY(-2px); }

.cc-lux-footer {
    text-align: center;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

/* ════════════════════════
   RESPONSIVE — Bölümler
════════════════════════ */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid    { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(2)::after { display: none; }
    .pass-grid     { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .hero          { padding: 120px 20px 100px; }
    .hero-visual   { width: 260px; height: 260px; }
    .hero-float-1  { left: -10px;  font-size: 0.75rem; }
    .hero-float-2  { right: -10px; font-size: 0.75rem; }
    .stat-item     { padding: 32px 16px; }
    .stat-item:nth-child(even)::after { display: none; }
    .stat-num      { font-size: 2.2rem; }
    .features-grid { grid-template-columns: 1fr; }
    .pass-grid     { grid-template-columns: 1fr 1fr; gap: 20px; }
    .pass-watermark{ font-size: 5rem; opacity: 0.2; }
    .contact-lux-card { padding: 40px 24px; }
    .cc-lux-btns   { grid-template-columns: 1fr 1fr; }
    .cc-lux-btn-primary { grid-column: 1 / -1; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.4rem; }
    .hero-visual { width: 220px; height: 220px; }
    .pass-grid { grid-template-columns: 1fr; }
}
/* ═══════════════════════════════════════
   TÜRKİYE HARİTASI (SVG) STİLLERİ
═══════════════════════════════════════ */

/* Harita Genel Konumu ve Gölgesi */
.turkey-map svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
}

/* Tüm İllerin Standart Koyu Temalı Görünümü */
.turkey-map path {
    fill: var(--bg-surface);
    stroke: var(--border-light);
    stroke-width: 1px;
    transition: all 0.3s var(--ease-smooth);
    cursor: pointer;
}

/* İllerin Üzerine Gelindiğinde (Hover) Standart Parlama */
.turkey-map path:hover {
    fill: var(--bg-card);
    stroke: var(--gold);
    stroke-width: 2px;
}

/* ─── BÖLGESEL VURGULAR ─── */

/* Merkez Ofis: Manisa (#TR-45) */
#TR-45, #manisa, path[data-iladi="Manisa"] {
    fill: var(--gold-dim);
    stroke: var(--gold);
}
#TR-45:hover, #manisa:hover, path[data-iladi="Manisa"]:hover {
    fill: var(--gold);
}

/* Çevre Hizmet Bölgeleri: İzmir (#TR-35) ve Balıkesir (#TR-10) */
#TR-35, #izmir, path[data-iladi="İzmir"],
#TR-10, #balikesir, path[data-iladi="Balıkesir"] {
    fill: var(--accent-glow);
    stroke: var(--accent-light);
}
#TR-35:hover, #izmir:hover, path[data-iladi="İzmir"]:hover,
#TR-10:hover, #balikesir:hover, path[data-iladi="Balıkesir"]:hover {
    fill: var(--accent-light);
}

/* ─── ŞEHİR İSMİ KUTUSU (TOOLTIP) ─── */
.map-tooltip {
    position: fixed;
    background: rgba(10, 10, 10, 0.9);
    color: var(--gold);
    padding: 8px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    pointer-events: none; /* Kutunun farenin tıklamasını engellememesi için kritik kural */
    opacity: 0;
    transform: translate(-50%, -100%);
    transition: opacity 0.2s;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

/* Kutunun görünür olma durumu */
.map-tooltip.visible {
    opacity: 1;
}
/* --- ÖZEL BÖLGELERİ RENKLENDİRME (GÜNCELLENDİ) --- */
/* Not: Artık hedefimiz <g> grubunun içindeki <path> etiketleri */

/* Merkez Ofis: Manisa (Altın Rengi Vurgu) */
/* ─── OTOMATİK BÖLGESEL VURGULAR ─── */

/* Merkez Ofis Sınıfı (Örn: Manisa) */
g.hq-service path {
    fill: var(--gold-dim);
    stroke: var(--gold);
}
g.hq-service:hover path {
    fill: var(--gold);
}

/* Aktif Hizmet Bölgeleri Sınıfı (Ege, Marmara, İç Anadolu vb.) */
g.active-service path {
    fill: var(--accent-glow);
    stroke: var(--accent-light);
}
g.active-service:hover path {
    fill: var(--accent-light);
}
/* ─── RESİM YÜKLENİRKEN GÖRÜNECEK ŞIK ZEMİN ─── */
.gallery-img-wrap, .product-img-wrap {
    background-color: var(--bg-surface); /* Resim inene kadar koyu gri lüks bir zemin durur */
}

/* ─── SOFT YÜKLEME (FADE-IN) EFEKTİ ─── */
.soft-img {
    opacity: 0; /* Başlangıçta görünmez */
    /* Opaklık için 0.8 saniyelik yumuşak bir geçiş ekliyoruz */
    transition: opacity 0.8s ease-in-out, transform 1s var(--ease-out-expo), filter 0.6s !important;
}

/* Resim tamamen indirildiğinde bu sınıf JS tarafından eklenecek */
.soft-img.loaded {
    opacity: 1; /* Usulca görünür hale gelir */
}
/* ══════════════════════════════════════
   GÖRSEL YÜKLENİYOR (SPINNER) VE CLS KİLİDİ
══════════════════════════════════════ */
.product-img-wrap, 
.gallery-img-wrap, 
.blog-img-wrap {
    background-color: var(--bg-surface); /* Resim inene kadar lüks koyu zemin */
    position: relative;
    z-index: 1;
}

/* Dönen Altın Daire (Spinner) */
.product-img-wrap::before, 
.gallery-img-wrap::before, 
.blog-img-wrap::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 36px;
    height: 36px;
    margin-top: -18px;
    margin-left: -18px;
    border: 3px solid var(--border-light);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: imageSpin 1s linear infinite;
    z-index: -1; /* Resmin arkasında döner */
    transition: opacity 0.4s ease;
}

/* Resim yüklendiğinde spinner'ı yumuşakça gizle */
.product-img-wrap:has(.loaded)::before, 
.gallery-img-wrap:has(.loaded)::before, 
.blog-img-wrap:has(.loaded)::before {
    opacity: 0;
}

@keyframes imageSpin {
    to { transform: rotate(360deg); }
}

/* Soft Yükleme Efekti (Eğer base.css'te yoksa bunu da ekle) */
.soft-img {
    opacity: 0;
    transition: opacity 0.8s ease-in-out, transform 1s var(--ease-out-expo), filter 0.6s !important;
}
.soft-img.loaded {
    opacity: 1;
}
