/* ==========================================================================
   RENKSAN ETİKET — görsel yenileme katmanı
   Tema CSS'inden SONRA yüklenir; orijinal dosyalara dokunmaz.
   Marka rengi logodan örneklendi: #DA8B1A
   ========================================================================== */

:root {
    --rs-brand: #DA8B1A;
    --rs-brand-dark: #B26F12;
    --rs-brand-soft: #FBF3E7;
    --rs-brand-ring: rgba(218, 139, 26, .28);
    --rs-ink: #1B2333;
    --rs-body: #5B6577;
    --rs-line: #E9E4DB;
    --rs-bg-soft: #FAF8F5;
    --rs-radius: 16px;
    --rs-shadow: 0 2px 4px rgba(27, 35, 51, .04), 0 12px 28px rgba(27, 35, 51, .07);
    --rs-shadow-hover: 0 6px 12px rgba(27, 35, 51, .06), 0 22px 48px rgba(27, 35, 51, .12);
}

/* --------------------------------------------------------------- TİPOGRAFİ */
body {
    color: var(--rs-body);
    font-size: 16.5px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6,
.h2-xl, .h2-md, .h2-sm {
    color: var(--rs-ink);
    letter-spacing: -.02em;
    line-height: 1.18;
    font-weight: 700;
}

.section-title p,
.txt-block p,
p.p-lg, p.p-xl {
    color: var(--rs-body);
}

/* Bölüm üstü küçük etiket yazısı */
.section-id,
.txt-block .section-id {
    color: var(--rs-brand) !important;
    font-weight: 700;
    letter-spacing: .14em;
    font-size: 12.5px;
    margin-bottom: 14px;
    display: inline-block;
}

/* Başlık altı ince marka çizgisi */
.section-title h2::after {
    content: "";
    display: block;
    width: 56px;
    height: 3px;
    border-radius: 3px;
    background: var(--rs-brand);
    margin: 20px auto 0;
}
.txt-block h2::after {
    content: "";
    display: block;
    width: 48px;
    height: 3px;
    border-radius: 3px;
    background: var(--rs-brand);
    margin: 18px 0 0;
}

/* ------------------------------------------------------------------- KAPAK */
#hero-14 {
    background-image:
        linear-gradient(100deg, rgba(16, 22, 34, .94) 0%, rgba(16, 22, 34, .86) 34%, rgba(16, 22, 34, .52) 62%, rgba(16, 22, 34, .22) 100%),
        url(/general/stick.png) !important;
    background-position: right center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-attachment: scroll !important;   /* mobilde parallax takılmasın */
    padding-top: 190px !important;
    padding-bottom: 150px !important;
    position: relative;
}

/* Kapak videosu — arka planda, metnin altında */
#hero-14 { overflow: hidden; }

#hero-14 .hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    opacity: 0;
    transition: opacity .6s ease;
    pointer-events: none;
    background: #101622;
}
#hero-14 .hero-video.hazir { opacity: 1; }

/* Video varken degradeyi ayrı katman olarak videonun ÜSTÜNE koy.
   Video yokken bölümün kendi background degradesi zaten var — çift karartma olmasın. */
#hero-14.has-video::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(100deg,
        rgba(16, 22, 34, .94) 0%,
        rgba(16, 22, 34, .86) 34%,
        rgba(16, 22, 34, .52) 62%,
        rgba(16, 22, 34, .22) 100%);
}

/* Metin en üstte kalsın */
#hero-14 > .container { position: relative; z-index: 2; }

.hero-14-txt .section-id {
    color: #F2C078 !important;
}

.hero-14-txt h2,
.hero-14-txt .h2-xl {
    color: #fff !important;
    font-size: 3.35rem;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -.03em;
    text-shadow: 0 2px 24px rgba(0, 0, 0, .35);
    margin-bottom: 20px;
}

.hero-14-txt p.p-xl {
    color: rgba(255, 255, 255, .92) !important;
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 34em;
    text-shadow: 0 1px 14px rgba(0, 0, 0, .35);
}

/* Kapağa çağrı butonu ekliyoruz gibi durması için alan */
.hero-14-txt { padding-right: 10px; }

/* ----------------------------------------------------------------- BUTONLAR */
.btn,
.btn.btn-md,
a.btn {
    border-radius: 999px !important;
    font-weight: 600 !important;
    letter-spacing: .01em;
    padding: 14px 32px !important;
    transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease !important;
    border-width: 2px !important;
}

.btn-violet-red,
.btn.btn-violet-red {
    background-color: var(--rs-brand) !important;
    border-color: var(--rs-brand) !important;
    color: #fff !important;
    box-shadow: 0 8px 20px var(--rs-brand-ring);
}

.btn-violet-red:hover,
.btn.btn-violet-red:hover,
.btn-violet-red:focus {
    background-color: var(--rs-brand-dark) !important;
    border-color: var(--rs-brand-dark) !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 26px var(--rs-brand-ring);
}

/* ------------------------------------------------------- BÖLÜM RİTMİ / BOŞLUK */
/* Şablonun aşırı boşlukları daralt */
.wide-100 { padding-top: 88px !important; padding-bottom: 88px !important; }
.wide-70  { padding-top: 76px !important; padding-bottom: 76px !important; }
.wide-60  { padding-top: 70px !important; padding-bottom: 70px !important; }
.pt-100   { padding-top: 88px !important; }
.pb-100   { padding-bottom: 88px !important; }
.mb-70    { margin-bottom: 52px !important; }
.mb-60    { margin-bottom: 46px !important; }
.mb-50    { margin-bottom: 40px !important; }

.section-title { margin-bottom: 52px; }
.section-title p { max-width: 720px; margin-left: auto; margin-right: auto; }

/* Yumuşak arka planlı bölümler */
.bg-whitesmoke,
.bg-lightgrey,
.grey-color { background-color: var(--rs-bg-soft) !important; }

/* --------------------------------------------------------- MARKA LOGOLARI */
.brands-section .brand-logo {
    background: #fff;
    border: 1px solid var(--rs-line);
    border-radius: var(--rs-radius);
    padding: 22px 18px;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 104px;
}
.brands-section .brand-logo:hover {
    transform: translateY(-3px);
    box-shadow: var(--rs-shadow);
    border-color: var(--rs-brand-ring);
}
.brands-section .brand-logo img {
    max-height: 56px;
    width: auto;
    object-fit: contain;
    filter: none;
}
.brands-title p { color: var(--rs-body); font-weight: 500; }

/* ------------------------------------------------------------ ÖZELLİK KART */
.fbox-8, .fbox-4, .fbox-3, .fbox-2 {
    background: #fff;
    border: 1px solid var(--rs-line);
    border-radius: var(--rs-radius);
    padding: 34px 28px;
    height: 100%;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.fbox-8:hover, .fbox-4:hover, .fbox-3:hover {
    transform: translateY(-4px);
    box-shadow: var(--rs-shadow-hover);
    border-color: var(--rs-brand-ring);
}
.fbox-8 h5, .fbox-4 h5, .fbox-8 h4, .fbox-4 h4 {
    color: var(--rs-ink);
    margin-bottom: 12px;
    font-weight: 700;
}
/* Tema, görseli kutunun dışına taşırmak için negatif margin kullanıyor;
   bu başlıkla çakışmaya yol açtığı için normal akışa alıyoruz. */
.fbox-8 .fbox-img {
    background: var(--rs-brand-soft) !important;
    background-image: none !important;
    padding: 26px 12% !important;
    margin: 0 0 22px !important;
    border-radius: 14px;
}
.fbox-8 .fbox-img img {
    margin-bottom: 0 !important;
    max-height: 132px;
    width: auto;
}
.fbox-ico img { max-height: 116px; width: auto; }
.fbox-ico { margin-bottom: 20px; }

/* Kart yükseklikleri eşitlensin */
.fbox-8-wrapper .row > .col { display: flex; }
.fbox-8-wrapper .row > .col > .fbox-8 { width: 100%; }

/* İkon rozetleri marka rengiyle */
.fbox-ico [class^="flaticon-"],
.fbox-ico [class*=" flaticon-"],
.ico-65 [class^="flaticon-"],
.ico-65 [class*=" flaticon-"] {
    color: var(--rs-brand) !important;
}

/* "Süreci Birlikte Yönetiyoruz" listesi */
.fbox-4 { display: flex; gap: 18px; align-items: flex-start; }
.fbox-4 .fbox-ico { margin-bottom: 0; flex: 0 0 auto; }

/* ------------------------------------------------------------- YORUM KARTLARI */
/* Karusel taşmasını düzelt: kartlar kesilmesin */
#reviews-1 .owl-stage-outer,
.reviews-section .owl-stage-outer { overflow: hidden; padding: 12px 0 28px; }

.review-1 {
    background: #fff;
    border: 1px solid var(--rs-line);
    border-radius: var(--rs-radius);
    padding: 32px 28px 28px;
    margin: 6px 10px;
    box-shadow: var(--rs-shadow);
    height: auto;
}
.review-1-txt h5 { color: var(--rs-ink); font-weight: 700; margin-bottom: 12px; }
.review-1-txt p { color: var(--rs-body); font-style: normal; }
.review-1-ico { color: var(--rs-brand); opacity: .28; }
.review-1-ico span { font-size: 34px; }

.owl-dots .owl-dot span { background: var(--rs-line) !important; }
.owl-dots .owl-dot.active span,
.owl-dots .owl-dot:hover span { background: var(--rs-brand) !important; }

/* ------------------------------------------------------------------ SAYILAR */
.statistic-block h2, .statistic-number h2, .statistic-block .h2-xl {
    color: var(--rs-brand) !important;
    font-weight: 800;
    letter-spacing: -.03em;
}
.statistic-block p, .statistic-number p { color: var(--rs-body); }

/* --------------------------------------------------------------- İÇERİK BLOK */
.txt-block .txt-block-title h5,
.txt-block h4, .txt-block h5 { color: var(--rs-ink); font-weight: 700; }

.txt-block ul.simple-list li p,
.txt-block .simple-list li { color: var(--rs-body); }

/* Sayfa içeriği (Kurumsal / Hakkımızda / Baskı) */
#about-2 .about-2-title h1 {
    font-size: 2.5rem;
    margin-bottom: 8px;
}
#about-2 .about-2-title h1::after {
    content: "";
    display: block;
    width: 56px; height: 3px;
    border-radius: 3px;
    background: var(--rs-brand);
    margin: 18px 0 30px;
}
#about-2 .about-2-title h3,
#page-content .txt-block h3 {
    color: var(--rs-ink);
    font-size: 1.45rem;
    margin: 38px 0 14px;
    padding-left: 16px;
    border-left: 4px solid var(--rs-brand);
    line-height: 1.3;
}
#about-2 .about-2-title p,
#page-content .txt-block p { margin-bottom: 18px; }
#about-2 .about-2-title ul,
#page-content .txt-block ul {
    list-style: none;
    padding-left: 0;
    margin: 0 0 22px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 10px 24px;
}
#about-2 .about-2-title ul li,
#page-content .txt-block ul li {
    position: relative;
    padding: 10px 14px 10px 34px;
    background: var(--rs-brand-soft);
    border-radius: 10px;
    color: var(--rs-ink);
    font-weight: 500;
}
#about-2 .about-2-title ul li::before,
#page-content .txt-block ul li::before {
    content: "";
    position: absolute;
    left: 14px; top: 50%;
    width: 8px; height: 8px;
    margin-top: -4px;
    border-radius: 50%;
    background: var(--rs-brand);
}
#page-content .section-title h2 { font-size: 2.3rem; }

/* --------------------------------------------------------------------- ÜST MENÜ */
.wsmenu > .wsmenu-list > li > a {
    font-weight: 600;
    letter-spacing: .01em;
}
.wsmenu > .wsmenu-list > li > a:hover,
.wsmenu > .wsmenu-list > li.active > a { color: var(--rs-brand) !important; }

/* Sayfa üstü şeffaf menü okunurluğu için hafif gölge */
.navbar-dark .wsmenu > .wsmenu-list > li > a,
.tra-menu .wsmenu > .wsmenu-list > li > a { text-shadow: 0 1px 10px rgba(0, 0, 0, .35); }

/* Menüdeki teklif butonu */
.wsmenu .btn { padding: 10px 22px !important; }

/* ------------------------------------------------------------------- FOOTER */
#footer-1, .footer {
    background: var(--rs-ink);
    color: rgba(255, 255, 255, .72);
}
#footer-1 h5, #footer-1 h6, .footer h5, .footer h6 { color: #fff; font-weight: 700; }
#footer-1 p, .footer p { color: rgba(255, 255, 255, .68); }
#footer-1 a, .footer a { color: rgba(255, 255, 255, .78); transition: color .18s ease; }
#footer-1 a:hover, .footer a:hover { color: var(--rs-brand); }
.footer-copyright p, .bottom-footer p { color: rgba(255, 255, 255, .55); }
.footer-socials a, .foo-socials a { color: rgba(255, 255, 255, .8); }
.footer-socials a:hover, .foo-socials a:hover { color: var(--rs-brand); }
hr.divider, .footer hr { border-color: rgba(255, 255, 255, .12); }

/* --------------------------------------------------------------------- FORM */
.form-control, input.form-control, textarea.form-control, select.form-control {
    border: 1px solid var(--rs-line) !important;
    border-radius: 12px !important;
    padding: 14px 18px !important;
    height: auto !important;
    color: var(--rs-ink);
    background: #fff;
    transition: border-color .18s ease, box-shadow .18s ease;
}
.form-control:focus {
    border-color: var(--rs-brand) !important;
    box-shadow: 0 0 0 4px var(--rs-brand-ring) !important;
    outline: none;
}
.form-control::placeholder { color: #9AA3B1; }

/* --------------------------------------------------------------- ERİŞİLEBİLİRLİK */
a:focus-visible, button:focus-visible, .btn:focus-visible {
    outline: 3px solid var(--rs-brand-ring);
    outline-offset: 2px;
}

img { max-width: 100%; height: auto; }

/* =========================================================== RESPONSIVE ==== */

/* Tablet */
@media (max-width: 991.98px) {
    #hero-14 {
        padding-top: 150px !important;
        padding-bottom: 110px !important;
        background-image:
            linear-gradient(180deg, rgba(16, 22, 34, .86) 0%, rgba(16, 22, 34, .72) 50%, rgba(16, 22, 34, .60) 100%),
            url(/general/stick.png) !important;
        background-position: 62% center !important;
    }
    .hero-14-txt h2, .hero-14-txt .h2-xl { font-size: 2.6rem; }
    .hero-14-txt p.p-xl { font-size: 1.1rem; }
    .wide-100 { padding-top: 66px !important; padding-bottom: 66px !important; }
    .wide-70  { padding-top: 58px !important; padding-bottom: 58px !important; }
    .section-title { margin-bottom: 40px; }
    .fbox-8, .fbox-4, .fbox-3 { margin-bottom: 20px; }
}

/* Telefon */
@media (max-width: 767.98px) {
    body { font-size: 16px; line-height: 1.68; }

    #hero-14 {
        padding-top: 120px !important;
        padding-bottom: 86px !important;
        text-align: center;
    }
    .hero-14-txt { text-align: center; padding-right: 0; }
    .hero-14-txt h2, .hero-14-txt .h2-xl {
        font-size: 2.05rem;
        line-height: 1.16;
        margin-bottom: 14px;
    }
    .hero-14-txt p.p-xl {
        font-size: 1.02rem;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-14-txt .section-id { font-size: 11.5px; }

    .section-title h2, h2.h2-md, h2.h2-xl { font-size: 1.72rem; }
    .section-title p { font-size: 1rem; }
    .section-title h2::after { margin-top: 16px; }

    .wide-100 { padding-top: 52px !important; padding-bottom: 52px !important; }
    .wide-70  { padding-top: 46px !important; padding-bottom: 46px !important; }
    .wide-60  { padding-top: 44px !important; padding-bottom: 44px !important; }
    .section-title { margin-bottom: 32px; }

    .fbox-8, .fbox-4, .fbox-3 { padding: 26px 22px; margin-bottom: 16px; }
    .fbox-4 { display: block; }
    .fbox-4 .fbox-ico { margin-bottom: 14px; }

    .review-1 { margin: 6px 4px; padding: 26px 22px; }

    .brands-section .brand-logo { min-height: 88px; padding: 16px 12px; }
    .brands-section .brand-logo img { max-height: 44px; }

    /* Dokunma hedefleri */
    .btn, a.btn { padding: 14px 26px !important; display: inline-block; }
    .wsmenu-list > li > a { padding: 14px 18px !important; }

    #page-content .section-title h2 { font-size: 1.65rem; }
    #page-content .txt-block h3,
    #about-2 .about-2-title h3 { font-size: 1.22rem; margin: 28px 0 12px; }
    #page-content .txt-block ul,
    #about-2 .about-2-title ul { grid-template-columns: 1fr; }
    #about-2 .about-2-title h1 { font-size: 1.75rem; }

    /* Sayfa yatayda kaymasın */
    html, body { overflow-x: hidden; }
}

/* Çok küçük telefonlar */
@media (max-width: 389.98px) {
    .hero-14-txt h2, .hero-14-txt .h2-xl { font-size: 1.82rem; }
    .section-title h2 { font-size: 1.55rem; }
}

/* Hareket azaltma tercihi */
@media (prefers-reduced-motion: reduce) {
    * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
    .wow { visibility: visible !important; animation: none !important; }
}
