/* ── Yüksel Oto Döşeme — Ana Stil ──────────────────────────────────────── */
:root {
    --altin:    #c8a96e;
    --altin-dk: #a8893e;
    --siyah:    #0e0e0e;
    --koyu:     #1a1a1a;
    --koyu2:    #252525;
    --bej:      #f8f5f0;
    --gri:      #6c757d;
    --beyaz:    #ffffff;
    --transition: all .3s ease;
}

/* ── Reset & Base ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    color: #333;
    background: var(--beyaz);
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
h1,h2,h3,h4,h5,h6 { font-family: 'Oswald', sans-serif; font-weight: 600; line-height: 1.2; }
p { line-height: 1.8; margin-bottom: 1rem; }

/* ── Utility ──────────────────────────────────────────────────────────── */
.text-altin  { color: var(--altin) !important; }
.bg-altin    { background: var(--altin) !important; }
.bg-koyu     { background: var(--koyu) !important; }
.bg-siyah    { background: var(--siyah) !important; }
.bg-bej      { background: var(--bej) !important; }
.section-pd  { padding: 90px 0; }
.section-pd-sm { padding: 60px 0; }

.section-title { text-align: center; margin-bottom: 55px; }
.section-title .tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--altin);
    margin-bottom: 12px;
}
.section-title h2 {
    font-size: clamp(28px, 4vw, 44px);
    color: var(--koyu);
    margin-bottom: 16px;
}
.section-title h2.text-white { color: var(--beyaz); }
.section-title .alt-cizgi {
    width: 60px; height: 3px;
    background: var(--altin);
    margin: 0 auto 20px;
}
.section-title p { color: var(--gri); max-width: 600px; margin: 0 auto; }
.section-title.left-align { text-align: left; }
.section-title.left-align .alt-cizgi { margin-left: 0; }

/* ── Buttons ──────────────────────────────────────────────────────────── */
.btn-altin {
    background: var(--altin);
    color: var(--siyah);
    border: 2px solid var(--altin);
    padding: 13px 34px;
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 3px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: var(--transition);
}
.btn-altin:hover {
    background: var(--altin-dk);
    border-color: var(--altin-dk);
    color: var(--beyaz);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(200,169,110,.35);
}
.btn-outline-altin {
    background: transparent;
    color: var(--altin);
    border: 2px solid var(--altin);
    padding: 13px 34px;
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 3px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: var(--transition);
}
.btn-outline-altin:hover {
    background: var(--altin);
    color: var(--siyah);
    transform: translateY(-2px);
}
.btn-beyaz {
    background: var(--beyaz);
    color: var(--koyu);
    border: 2px solid var(--beyaz);
    padding: 13px 34px;
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 3px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: var(--transition);
}
.btn-beyaz:hover { background: var(--altin); border-color: var(--altin); color: var(--siyah); }

/* ── Topbar ───────────────────────────────────────────────────────────── */
.topbar {
    background: var(--siyah);
    padding: 9px 0;
    font-size: 13px;
    color: #aaa;
    border-bottom: 1px solid #2a2a2a;
}
.topbar a { color: #aaa; }
.topbar a:hover, .topbar i { color: var(--altin); }
.topbar i { margin-right: 5px; }
.topbar .separator { margin: 0 14px; color: #444; }
.topbar .social-icons a {
    width: 28px; height: 28px;
    display: inline-flex; align-items: center; justify-content: center;
    border: 1px solid #333;
    border-radius: 50%;
    color: #aaa;
    font-size: 12px;
    margin-left: 6px;
}
.topbar .social-icons a:hover { border-color: var(--altin); color: var(--altin); }

/* ── Header / Navbar ──────────────────────────────────────────────────── */
.site-header {
    background: var(--siyah);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #222;
    transition: var(--transition);
}
.site-header.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,.5); }
.site-header .navbar { padding: 0; min-height: 72px; }
.site-logo img { height: 54px; }
.site-logo span {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--beyaz);
    letter-spacing: 1px;
}
.site-logo span em { color: var(--altin); font-style: normal; }

.nav-link-item {
    color: #ccc !important;
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 26px 18px !important;
    position: relative;
    transition: var(--transition);
}
.nav-link-item::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%; right: 50%;
    height: 2px;
    background: var(--altin);
    transition: var(--transition);
}
.nav-link-item:hover::after, .nav-link-item.active::after { left: 18px; right: 18px; }
.nav-link-item:hover, .nav-link-item.active { color: var(--altin) !important; }

.nav-cta {
    background: var(--altin);
    color: var(--siyah) !important;
    padding: 10px 22px !important;
    border-radius: 3px;
    font-weight: 600;
    margin-left: 10px;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--altin-dk) !important; color: var(--beyaz) !important; }

.navbar-toggler {
    border: 1px solid #444;
    padding: 6px 10px;
    color: var(--altin);
}
.navbar-toggler-icon { filter: invert(1); }

/* ── Hero Slider ──────────────────────────────────────────────────────── */
.hero-slider { position: relative; height: 100vh; min-height: 600px; overflow: hidden; }
.hero-slide {
    height: 100vh; min-height: 600px;
    display: flex; align-items: center;
    position: relative;
    background: var(--siyah);
}
.hero-slide-bg {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    opacity: .45;
    transition: transform 8s ease;
}
.swiper-slide-active .hero-slide-bg { transform: scale(1.08); }
.hero-slide-no-img { background: linear-gradient(135deg, var(--siyah) 0%, var(--koyu2) 100%); }
.hero-slide-no-img::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c8a96e' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content { position: relative; z-index: 2; }
.hero-content .tag-line {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--altin);
    margin-bottom: 18px;
    display: flex; align-items: center; gap: 12px;
}
.hero-content .tag-line::before {
    content: '';
    width: 40px; height: 2px;
    background: var(--altin);
    display: inline-block;
}
.hero-content h1 {
    font-size: clamp(36px, 6vw, 72px);
    color: var(--beyaz);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 22px;
    text-shadow: 0 2px 20px rgba(0,0,0,.4);
}
.hero-content h1 span { color: var(--altin); }
.hero-content p {
    font-size: 17px;
    color: rgba(255,255,255,.8);
    max-width: 540px;
    margin-bottom: 36px;
    line-height: 1.7;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-scroll {
    position: absolute;
    bottom: 36px; left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
    color: rgba(255,255,255,.5);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}
.hero-scroll i { display: block; font-size: 20px; margin-bottom: 6px; color: var(--altin); }
.swiper-pagination-bullet { background: rgba(255,255,255,.5); width: 8px; height: 8px; }
.swiper-pagination-bullet-active { background: var(--altin); width: 24px; border-radius: 4px; }
.hero-prev, .hero-next {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    z-index: 10;
    width: 52px; height: 52px;
    background: rgba(200,169,110,.15);
    border: 1px solid rgba(200,169,110,.4);
    color: var(--altin);
    font-size: 18px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 3px;
}
.hero-prev:hover, .hero-next:hover { background: var(--altin); color: var(--siyah); }
.hero-prev { left: 28px; }
.hero-next { right: 28px; }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* ── Öne çıkan bilgi barı (slider altı) ──────────────────────────────── */
.info-bar {
    background: var(--altin);
    padding: 20px 0;
}
.info-bar .info-item {
    display: flex; align-items: center; gap: 14px;
    padding: 6px 0;
}
.info-bar .info-item i {
    font-size: 26px;
    color: var(--siyah);
    flex-shrink: 0;
}
.info-bar .info-item h6 {
    font-family: 'Oswald', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--siyah);
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.info-bar .info-item p { font-size: 13px; color: rgba(0,0,0,.7); margin: 0; line-height: 1.4; }
.info-bar .divider { border-left: 1px solid rgba(0,0,0,.15); height: 40px; }

/* ── Neden Biz (About strip) ─────────────────────────────────────────── */
.about-section { background: var(--bej); }
.about-img-wrap {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}
.about-img-wrap img { width: 100%; height: 480px; object-fit: cover; }
.about-img-badge {
    position: absolute;
    bottom: 28px; right: -20px;
    background: var(--altin);
    padding: 24px 28px;
    text-align: center;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0,0,0,.2);
}
.about-img-badge .yil { font-size: 56px; font-family: 'Oswald',sans-serif; font-weight: 700; color: var(--siyah); line-height: 1; }
.about-img-badge span { font-size: 13px; font-weight: 600; color: var(--siyah); letter-spacing: 1px; text-transform: uppercase; }
.ozellik-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 22px; }
.ozellik-item .ic { width: 46px; height: 46px; flex-shrink: 0; background: var(--altin); border-radius: 3px; display: flex; align-items: center; justify-content: center; color: var(--siyah); font-size: 18px; }
.ozellik-item h6 { font-family: 'Oswald',sans-serif; font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.ozellik-item p { font-size: 13px; color: var(--gri); margin: 0; line-height: 1.5; }

/* ── Hizmetler Kartları ───────────────────────────────────────────────── */
.hizmet-kart {
    background: var(--beyaz);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,.07);
    transition: var(--transition);
    height: 100%;
    display: flex; flex-direction: column;
}
.hizmet-kart:hover { transform: translateY(-8px); box-shadow: 0 16px 48px rgba(0,0,0,.12); }
.hizmet-kart-img {
    position: relative;
    height: 220px; overflow: hidden;
    background: var(--koyu2);
}
.hizmet-kart-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.hizmet-kart:hover .hizmet-kart-img img { transform: scale(1.06); }
.hizmet-kart-img .icon-overlay {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--siyah) 0%, var(--koyu2) 100%);
    color: var(--altin); font-size: 52px;
}
.hizmet-kart-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.hizmet-kart-body h3 {
    font-size: 20px; margin-bottom: 12px; color: var(--koyu);
    transition: var(--transition);
}
.hizmet-kart:hover .hizmet-kart-body h3 { color: var(--altin); }
.hizmet-kart-body p { font-size: 14px; color: var(--gri); flex: 1; margin-bottom: 20px; }
.hizmet-kart-link {
    font-family: 'Oswald', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--altin);
    display: flex; align-items: center; gap: 8px;
}
.hizmet-kart-link i { transition: var(--transition); }
.hizmet-kart:hover .hizmet-kart-link i { transform: translateX(5px); }

/* ── Sayaç Section ────────────────────────────────────────────────────── */
.sayac-section {
    background: var(--siyah);
    position: relative; overflow: hidden;
    padding: 80px 0;
}
.sayac-section::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c8a96e' fill-opacity='0.04'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.sayac-item { text-align: center; position: relative; }
.sayac-item .sayi {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 700;
    color: var(--altin);
    line-height: 1;
    margin-bottom: 8px;
}
.sayac-item .icon-wrap {
    width: 60px; height: 60px;
    background: rgba(200,169,110,.12);
    border: 1px solid rgba(200,169,110,.25);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--altin); font-size: 22px;
    margin: 0 auto 16px;
}
.sayac-item .baslik {
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,.6);
}
.sayac-divider {
    border-right: 1px solid rgba(200,169,110,.15);
    position: absolute; right: 0; top: 20%; height: 60%;
}

/* ── Galeri Grid ──────────────────────────────────────────────────────── */
.galeri-grid { columns: 3; gap: 14px; }
.galeri-grid .galeri-item {
    break-inside: avoid;
    margin-bottom: 14px;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
.galeri-grid .galeri-item img { width: 100%; display: block; transition: transform .4s ease; }
.galeri-item .galeri-overlay {
    position: absolute; inset: 0;
    background: rgba(14,14,14,.65);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    opacity: 0; transition: var(--transition);
    color: var(--beyaz);
}
.galeri-item:hover .galeri-overlay { opacity: 1; }
.galeri-item:hover img { transform: scale(1.05); }
.galeri-overlay i { font-size: 28px; color: var(--altin); margin-bottom: 8px; }
.galeri-overlay span { font-family: 'Oswald', sans-serif; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; }
@media(max-width:768px) { .galeri-grid { columns: 2; } }
@media(max-width:480px) { .galeri-grid { columns: 1; } }

/* ── Referanslar ──────────────────────────────────────────────────────── */
.ref-item {
    background: var(--beyaz);
    border: 1px solid #eee;
    border-radius: 4px;
    padding: 24px;
    display: flex; align-items: center; justify-content: center;
    height: 100px;
    filter: grayscale(1);
    opacity: .6;
    transition: var(--transition);
}
.ref-item:hover { filter: grayscale(0); opacity: 1; border-color: var(--altin); }
.ref-item img { max-height: 50px; object-fit: contain; }
.ref-item span { font-family: 'Oswald',sans-serif; font-size: 18px; color: var(--koyu); }

/* ── İletişim ─────────────────────────────────────────────────────────── */
.contact-form-wrap {
    background: var(--beyaz);
    padding: 50px 44px;
    border-radius: 6px;
    box-shadow: 0 8px 40px rgba(0,0,0,.08);
}
.form-control, .form-select {
    border: 1px solid #e0e0e0;
    border-radius: 3px;
    padding: 12px 16px;
    font-size: 14px;
    color: var(--koyu);
    transition: var(--transition);
    background: var(--bej);
}
.form-control:focus, .form-select:focus {
    border-color: var(--altin);
    box-shadow: 0 0 0 3px rgba(200,169,110,.18);
    background: var(--beyaz);
}
.form-label { font-size: 13px; font-weight: 600; color: var(--koyu); margin-bottom: 6px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 28px; }
.contact-info-item .ic {
    width: 52px; height: 52px; flex-shrink: 0;
    background: var(--altin); color: var(--siyah);
    border-radius: 4px; display: flex; align-items: center; justify-content: center;
    font-size: 20px;
}
.contact-info-item h6 { font-family: 'Oswald',sans-serif; font-size: 15px; font-weight: 600; margin-bottom: 5px; }
.contact-info-item p, .contact-info-item a { font-size: 14px; color: var(--gri); margin: 0; }
.contact-info-item a:hover { color: var(--altin); }

/* ── Page Header (iç sayfalar) ───────────────────────────────────────── */
.page-header {
    background: var(--siyah);
    padding: 70px 0 60px;
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23c8a96e' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-header .line { width: 50px; height: 2px; background: var(--altin); margin-bottom: 14px; }
.page-header h1 { font-size: clamp(28px, 5vw, 48px); color: var(--beyaz); margin-bottom: 14px; }
.breadcrumb { background: none; padding: 0; margin: 0; }
.breadcrumb-item a { color: rgba(255,255,255,.5); font-size: 13px; }
.breadcrumb-item a:hover { color: var(--altin); }
.breadcrumb-item.active { color: var(--altin); font-size: 13px; }
.breadcrumb-item+.breadcrumb-item::before { color: rgba(255,255,255,.3); }

/* ── Hizmet Detay ─────────────────────────────────────────────────────── */
.hizmet-detay-img { border-radius: 6px; overflow: hidden; margin-bottom: 36px; }
.hizmet-detay-img img { width: 100%; height: 420px; object-fit: cover; }
.hizmet-detay-icerik h2 { font-size: 32px; color: var(--koyu); margin-bottom: 16px; }
.hizmet-detay-icerik h2 span { color: var(--altin); }
.hizmet-detay-sidebar { padding: 32px; background: var(--bej); border-radius: 6px; }
.hizmet-listesi li {
    padding: 12px 16px;
    border-bottom: 1px solid #e8e8e8;
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    display: flex; align-items: center; gap: 10px;
}
.hizmet-listesi li:last-child { border-bottom: none; }
.hizmet-listesi li a { color: var(--koyu); display: flex; align-items: center; gap: 10px; width: 100%; }
.hizmet-listesi li:hover a, .hizmet-listesi li.aktif a { color: var(--altin); }
.hizmet-listesi li i { color: var(--altin); font-size: 12px; }

/* ── CTA Band ─────────────────────────────────────────────────────────── */
.cta-band {
    background: linear-gradient(135deg, var(--altin) 0%, var(--altin-dk) 100%);
    padding: 60px 0;
}
.cta-band h2 { font-size: clamp(24px, 4vw, 40px); color: var(--siyah); margin-bottom: 12px; }
.cta-band p { color: rgba(0,0,0,.7); font-size: 16px; margin: 0; }

/* ── Footer ───────────────────────────────────────────────────────────── */
.site-footer { background: var(--siyah); padding: 70px 0 0; color: rgba(255,255,255,.6); }
.footer-logo { margin-bottom: 20px; }
.footer-logo span { font-family: 'Oswald',sans-serif; font-size: 28px; font-weight: 700; color: var(--beyaz); }
.footer-logo span em { color: var(--altin); font-style: normal; }
.footer-logo img { height: 50px; }
.footer-desc { font-size: 14px; line-height: 1.8; margin-bottom: 24px; }
.footer-social a {
    width: 36px; height: 36px;
    display: inline-flex; align-items: center; justify-content: center;
    border: 1px solid #333; border-radius: 50%;
    color: rgba(255,255,255,.5); font-size: 14px;
    margin-right: 6px; margin-bottom: 6px;
    transition: var(--transition);
}
.footer-social a:hover { border-color: var(--altin); color: var(--altin); background: rgba(200,169,110,.1); }
.footer-heading {
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--beyaz);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--altin);
    display: inline-block;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links li a { font-size: 14px; color: rgba(255,255,255,.55); transition: var(--transition); display: flex; align-items: center; gap: 7px; }
.footer-links li a i { color: var(--altin); font-size: 11px; }
.footer-links li a:hover { color: var(--altin); padding-left: 4px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; font-size: 14px; }
.footer-contact li i { color: var(--altin); margin-top: 2px; flex-shrink: 0; }
.footer-contact li a { color: rgba(255,255,255,.55); }
.footer-contact li a:hover { color: var(--altin); }
.footer-bottom {
    border-top: 1px solid #222;
    padding: 20px 0;
    margin-top: 50px;
    font-size: 13px;
    color: rgba(255,255,255,.35);
}
.footer-bottom a { color: var(--altin); }

/* ── WhatsApp Butonu ──────────────────────────────────────────────────── */
.whatsapp-float {
    position: fixed;
    bottom: 28px; right: 28px;
    z-index: 9999;
    width: 56px; height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--beyaz); font-size: 26px;
    box-shadow: 0 6px 24px rgba(37,211,102,.4);
    transition: var(--transition);
    animation: pulse-green 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); color: var(--beyaz); }
@keyframes pulse-green {
    0%  { box-shadow: 0 0 0 0 rgba(37,211,102,.5); }
    70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
    100%{ box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ── Alert / Flash messages ───────────────────────────────────────────── */
.alert-flash {
    position: fixed;
    top: 20px; right: 20px;
    z-index: 9998;
    min-width: 300px;
    max-width: 420px;
    border-radius: 4px;
    padding: 16px 20px;
    font-size: 14px;
    animation: slideIn .3s ease;
}
@keyframes slideIn { from{transform:translateX(120%)} to{transform:translateX(0)} }

/* ── 404 ──────────────────────────────────────────────────────────────── */
.page-404 { min-height: 70vh; display: flex; align-items: center; background: var(--bej); }
.page-404 .num { font-size: 160px; font-family: 'Oswald',sans-serif; font-weight: 700; color: var(--altin); opacity: .3; line-height: 1; }

/* ── Responsive ───────────────────────────────────────────────────────── */
@media(max-width:991px) {
    .section-pd { padding: 65px 0; }
    .topbar { display: none; }
    .nav-link-item { padding: 12px 16px !important; }
    .nav-link-item::after { display: none; }
    .site-header .navbar { min-height: 60px; }
    .hero-slider, .hero-slide { height: 70vh; min-height: 480px; }
    .about-img-badge { right: 10px; }
    .info-bar .divider { display: none; }
    .contact-form-wrap { padding: 32px 24px; }
    .hero-prev, .hero-next { display: none; }
}
@media(max-width:576px) {
    .hero-content h1 { font-size: 32px; }
    .hero-btns { flex-direction: column; }
    .about-img-badge { display: none; }
}
