@charset "UTF-8";
/* =========================================================================
   Redcom Güvenlik — tema stilleri
   Bootstrap grid + FontAwesome + slick üzerine kurulu marka katmanı.
   ========================================================================= */

:root {
    --rc-primary:      #0c77bc;
    --rc-primary-dark: #095a90;
    --rc-cyan:         #29aeda;
    --rc-gradient:     linear-gradient(135deg, #0c77bc 0%, #29aeda 100%);
    --rc-navy:         #0b2338;
    --rc-navy-2:       #12324c;
    --rc-ink:          #16222e;
    --rc-muted:        #5c6b7a;
    --rc-line:         #e3e9ef;
    --rc-soft:         #f4f7fa;
    --rc-white:        #ffffff;
    --rc-ok:           #1f9d55;
    --rc-err:          #d4342b;

    --rc-radius:    12px;
    --rc-radius-sm: 8px;
    --rc-shadow:    0 2px 10px rgba(11, 35, 56, .07);
    --rc-shadow-lg: 0 16px 40px rgba(11, 35, 56, .14);

    --rc-head: 'Montserrat', 'Segoe UI', sans-serif;
    --rc-body: 'Inter', 'Segoe UI', Arial, sans-serif;
}

/* ------------------------------------------------------------------ temel -- */
* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: var(--rc-body);
    font-size: 16px;
    line-height: 1.75;
    color: var(--rc-ink);
    background: var(--rc-white);
    -webkit-font-smoothing: antialiased;
    /* clip, hidden'ın aksine kaydırma bağlamı oluşturmaz; sabit (sticky) başlık
       çalışmaya devam eder. Desteklemeyen tarayıcılar hidden'a düşer. */
    overflow-x: hidden;
    overflow-x: clip;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--rc-head);
    color: var(--rc-navy);
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 .6em;
    letter-spacing: -.01em;
}

h1 { font-size: clamp(1.85rem, 3.4vw, 2.85rem); }
h2 { font-size: clamp(1.5rem, 2.6vw, 2.15rem); }
h3 { font-size: clamp(1.2rem, 1.9vw, 1.45rem); }
h4 { font-size: 1.12rem; }

p { margin: 0 0 1.1rem; }

a {
    color: var(--rc-primary);
    text-decoration: none;
    transition: color .2s ease;
}
a:hover { color: var(--rc-primary-dark); }

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

/* <picture> sarmalayıcısı düzeni etkilemesin; <img> doğrudan ebeveyne yerleşsin */
picture { display: contents; }

ul, ol { margin: 0 0 1.1rem; padding-left: 1.25rem; }
li { margin-bottom: .4rem; }

strong { font-weight: 700; color: var(--rc-navy); }

hr { border: 0; border-top: 1px solid var(--rc-line); margin: 2.2rem 0; }

::selection { background: var(--rc-primary); color: #fff; }

/* Odak halkası: fareyle tıklamada görünmesin, klavyeyle gezinirken görünsün.
   (Erişilebilirlik için outline'ı tamamen kaldırmıyoruz.) */
:focus:not(:focus-visible) { outline: none; }
:focus-visible {
    outline: 2px solid var(--rc-primary);
    outline-offset: 2px;
    border-radius: 4px;
}
.rc-akordeon-bas:focus-visible { outline-offset: -3px; }
.rc-slayt-icerik a:focus-visible,
.rc-btn-ghost:focus-visible,
.rc-cta .rc-btn:focus-visible,
.rc-footer a:focus-visible,
.rc-topbar a:focus-visible { outline-color: #fff; }

.rc-skip {
    position: absolute; left: -9999px; top: 0; z-index: 999;
    background: var(--rc-navy); color: #fff; padding: .7rem 1.2rem;
}
.rc-skip:focus { left: 0; color: #fff; }

/* Bootstrap 4 tabanlı şablonda bulunmayan boşluk (gutter) yardımcıları */
.row.g-3, .row.g-4 { margin-right: -12px; margin-left: -12px; margin-bottom: -24px; }
.row.g-3 > [class*="col"], .row.g-4 > [class*="col"] {
    padding-right: 12px; padding-left: 12px; margin-bottom: 24px;
}
.row.g-5 { margin-right: -16px; margin-left: -16px; margin-bottom: -40px; }
.row.g-5 > [class*="col"] { padding-right: 16px; padding-left: 16px; margin-bottom: 40px; }

/* --------------------------------------------------------------- butonlar -- */
.rc-btn {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    font-family: var(--rc-head);
    font-weight: 600;
    font-size: .93rem;
    line-height: 1;
    padding: .95rem 1.6rem;
    border-radius: var(--rc-radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all .22s ease;
    text-align: center;
}
.rc-btn i { font-size: .9em; }

.rc-btn-primary {
    background: var(--rc-gradient);
    color: #fff;
    box-shadow: 0 6px 18px rgba(12, 119, 188, .28);
}
.rc-btn-primary:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(12, 119, 188, .38);
}

.rc-btn-ghost {
    background: transparent;
    border-color: rgba(255, 255, 255, .55);
    color: #fff;
}
.rc-btn-ghost:hover { background: #fff; border-color: #fff; color: var(--rc-navy); }

.rc-btn-outline {
    background: transparent;
    border-color: var(--rc-primary);
    color: var(--rc-primary);
}
.rc-btn-outline:hover { background: var(--rc-primary); color: #fff; }

.rc-btn-lg { padding: 1.1rem 2rem; font-size: 1rem; }
.rc-btn-block { width: 100%; justify-content: center; }

/* ---------------------------------------------------------------- bölümler -- */
.rc-section { padding: 84px 0; }
.rc-section-sm { padding: 56px 0; }
.rc-soft { background: var(--rc-soft); }
.rc-dark { background: var(--rc-navy); color: rgba(255, 255, 255, .78); }
.rc-dark h1, .rc-dark h2, .rc-dark h3, .rc-dark h4, .rc-dark strong { color: #fff; }

.rc-title { margin-bottom: 2.6rem; }
.rc-title.center { text-align: center; max-width: 780px; margin-left: auto; margin-right: auto; }
.rc-title > span {
    display: inline-block;
    font-family: var(--rc-head);
    font-weight: 700;
    font-size: .78rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--rc-primary);
    margin-bottom: .7rem;
}
.rc-title h2 { margin-bottom: .5rem; }
.rc-title p { color: var(--rc-muted); margin-bottom: 0; }
.rc-dark .rc-title > span { color: var(--rc-cyan); }
.rc-dark .rc-title p { color: rgba(255, 255, 255, .72); }

.rc-title-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.rc-title-row .rc-title { margin-bottom: 0; }

/* ------------------------------------------------------------------ üst bar -- */
.rc-topbar {
    background: var(--rc-navy);
    color: rgba(255, 255, 255, .8);
    font-size: .86rem;
}
.rc-topbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 44px;
    flex-wrap: wrap;
}
.rc-topbar ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 1.6rem; flex-wrap: wrap; }
.rc-topbar li { margin: 0; }
.rc-topbar a { color: rgba(255, 255, 255, .8); }
.rc-topbar a:hover { color: var(--rc-cyan); }
.rc-topbar i { color: var(--rc-cyan); margin-right: .45rem; }
.rc-topbar-tel a { color: #fff; font-weight: 500; }
.rc-topbar .rc-social a {
    width: 30px; height: 30px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
}
.rc-topbar .rc-social a:hover { background: var(--rc-primary); color: #fff; }
.rc-topbar .rc-social i { margin: 0; color: inherit; }

/* ------------------------------------------------------------------- header -- */
.rc-header {
    background: #fff;
    box-shadow: 0 1px 0 var(--rc-line);
    position: sticky;
    top: 0;
    z-index: 200;
    transition: box-shadow .25s ease;
}
.rc-header.sabit { box-shadow: 0 6px 24px rgba(11, 35, 56, .1); }
.rc-header .container {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    min-height: 78px;
}
/* Logo ve sağ blok esneme sırasında daralmamalı; aksi hâlde logo yatayda ezilir. */
.rc-logo { flex-shrink: 0; }
.rc-logo img {
    height: 38px;
    width: auto;
    max-width: none;
    display: block;
}

.rc-nav { margin-left: auto; min-width: 0; }
.rc-nav > ul {
    list-style: none;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: .1rem;
    margin: 0;
    padding: 0;
}
.rc-nav > ul > li { position: relative; margin: 0; }
.rc-nav > ul > li > a {
    display: block;
    font-family: var(--rc-head);
    font-weight: 600;
    font-size: .91rem;
    color: var(--rc-navy);
    padding: 1.5rem .8rem;
    position: relative;
    white-space: nowrap;
}
.rc-nav > ul > li > a:after {
    content: '';
    position: absolute;
    left: .8rem; right: .8rem; bottom: 1.05rem;
    height: 2px;
    background: var(--rc-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s ease;
}
.rc-nav > ul > li > a:hover:after,
.rc-nav > ul > li.aktif > a:after { transform: scaleX(1); }
.rc-nav > ul > li.aktif > a { color: var(--rc-primary); }
.rc-nav .rc-ok { font-size: .65rem; margin-left: .3rem; opacity: .7; }

.rc-nav ul ul {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 268px;
    background: #fff;
    border-radius: var(--rc-radius-sm);
    box-shadow: var(--rc-shadow-lg);
    padding: .5rem 0;
    list-style: none;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all .22s ease;
    border-top: 3px solid var(--rc-primary);
}
.rc-nav > ul > li:hover > ul { opacity: 1; visibility: visible; transform: translateY(0); }
.rc-nav ul ul li { margin: 0; }
.rc-nav ul ul a {
    display: block;
    padding: .62rem 1.2rem;
    font-size: .89rem;
    color: var(--rc-ink);
    border-left: 3px solid transparent;
}
.rc-nav ul ul a:hover,
.rc-nav ul ul a.aktif {
    background: var(--rc-soft);
    border-left-color: var(--rc-primary);
    color: var(--rc-primary);
}

.rc-header-cta { display: flex; align-items: center; flex-shrink: 0; }
.rc-header-cta .rc-btn { padding: .85rem 1.4rem; }

.rc-menu-btn {
    display: none;
    margin-left: auto;
    width: 44px; height: 44px;
    align-items: center; justify-content: center;
    border: 1px solid var(--rc-line);
    border-radius: var(--rc-radius-sm);
    background: #fff;
    color: var(--rc-navy);
    font-size: 1.15rem;
    cursor: pointer;
}

/* --------------------------------------------------------------- mobil menü -- */
.rc-mobil {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(340px, 86vw);
    background: #fff;
    z-index: 400;
    transform: translateX(100%);
    visibility: hidden;                       /* kapalıyken klavye/okuyucu erişimi dışında */
    transition: transform .3s ease, visibility .3s;
    overflow-y: auto;
    padding: 1.2rem 1.2rem 3rem;
    box-shadow: -10px 0 40px rgba(11, 35, 56, .18);
}
.rc-mobil.acik { transform: translateX(0); visibility: visible; }
.rc-mobil-ust { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.rc-mobil-ust img { height: 34px; width: auto; }
.rc-kapat {
    background: none; border: 0; font-size: 1.4rem; color: var(--rc-navy); cursor: pointer; line-height: 1;
}
.rc-mobil ul { list-style: none; padding: 0; margin: 0; }
.rc-mobil li { margin: 0; border-bottom: 1px solid var(--rc-line); }
.rc-mobil a {
    display: block;
    padding: .85rem .2rem;
    font-family: var(--rc-head);
    font-weight: 600;
    font-size: .95rem;
    color: var(--rc-navy);
}
.rc-mobil ul ul { padding-left: .9rem; display: none; }
.rc-mobil li.acik > ul { display: block; }
.rc-mobil ul ul a { font-weight: 500; font-size: .89rem; color: var(--rc-muted); padding: .6rem .2rem; }
.rc-mobil .rc-alt-ac {
    float: right;
    background: none; border: 0; color: var(--rc-muted);
    padding: .85rem .3rem; cursor: pointer;
}
.rc-mobil .rc-btn { margin-top: 1.2rem; }
.rc-ortu {
    position: fixed; inset: 0;
    background: rgba(11, 35, 56, .5);
    z-index: 390;
    opacity: 0; visibility: hidden;
    transition: all .3s ease;
}
.rc-ortu.acik { opacity: 1; visibility: visible; }

/* -------------------------------------------------------------------- hero -- */
.rc-hero { position: relative; background: var(--rc-navy); }
.rc-hero .slick-list, .rc-hero .slick-track { height: 100%; }
.rc-slayt {
    position: relative;
    min-height: 620px;
    display: flex !important;
    align-items: center;
    background-size: cover;
    background-position: center;
}
.rc-slayt:before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(11, 35, 56, .92) 0%, rgba(11, 35, 56, .74) 45%, rgba(11, 35, 56, .3) 100%);
}
.rc-slayt .container { position: relative; z-index: 2; }
.rc-slayt-icerik { max-width: 680px; padding: 3rem 0; color: #fff; }
.rc-slayt-icerik > span {
    display: inline-block;
    font-family: var(--rc-head);
    font-weight: 700;
    font-size: .78rem;
    letter-spacing: .2em;
    color: var(--rc-cyan);
    margin-bottom: 1rem;
    padding-left: 3.4rem;
    position: relative;
}
.rc-slayt-icerik > span:before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    width: 2.6rem; height: 2px;
    background: var(--rc-cyan);
}
.rc-slayt-icerik h1, .rc-slayt-icerik h2 {
    color: #fff;
    font-size: clamp(1.9rem, 4.2vw, 3.3rem);
    margin-bottom: 1.1rem;
}
.rc-slayt-icerik p {
    font-size: 1.08rem;
    color: rgba(255, 255, 255, .85);
    margin-bottom: 2rem;
    max-width: 590px;
}
.rc-slayt-butonlar { display: flex; gap: .9rem; flex-wrap: wrap; }

.rc-hero .slick-dots {
    position: absolute;
    bottom: 30px;
    left: 0; right: 0;
    display: flex;
    justify-content: center;
    gap: .5rem;
    list-style: none;
    padding: 0;
    z-index: 3;
}
.rc-hero .slick-dots li { margin: 0; }
.rc-hero .slick-dots button {
    width: 32px; height: 4px;
    border: 0; border-radius: 4px;
    background: rgba(255, 255, 255, .35);
    text-indent: -9999px;
    padding: 0;
    cursor: pointer;
}
.rc-hero .slick-dots .slick-active button { background: var(--rc-cyan); }

/* ------------------------------------------------------------- özellik şeridi */
.rc-ozellikler { position: relative; margin-top: -60px; z-index: 10; }
.rc-ozellik {
    background: #fff;
    border-radius: var(--rc-radius);
    box-shadow: var(--rc-shadow);
    padding: 1.9rem 1.5rem;
    height: 100%;
    border-bottom: 3px solid transparent;
    transition: all .25s ease;
}
.rc-ozellik:hover { border-bottom-color: var(--rc-primary); box-shadow: var(--rc-shadow-lg); transform: translateY(-4px); }
.rc-ozellik i {
    width: 52px; height: 52px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: var(--rc-radius-sm);
    background: var(--rc-gradient);
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}
.rc-ozellik h3 { font-size: 1.06rem; margin-bottom: .4rem; }
.rc-ozellik p { color: var(--rc-muted); font-size: .92rem; margin: 0; }

/* ------------------------------------------------------------- hakkımızda -- */
.rc-abt-gorsel { position: relative; border-radius: var(--rc-radius); overflow: hidden; }
.rc-abt-gorsel img { width: 100%; display: block; }
.rc-abt-rozet {
    position: absolute;
    left: 0; bottom: 0;
    background: var(--rc-gradient);
    color: #fff;
    padding: 1.2rem 1.5rem;
    border-top-right-radius: var(--rc-radius);
}
.rc-abt-rozet b { display: block; font-family: var(--rc-head); font-size: 2rem; line-height: 1; }
.rc-abt-rozet span { font-size: .85rem; opacity: .9; }

.rc-liste { list-style: none; padding: 0; margin: 0 0 1.6rem; }
.rc-liste li {
    position: relative;
    padding-left: 1.9rem;
    margin-bottom: .6rem;
    color: var(--rc-muted);
}
.rc-liste li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0; top: 0;
    color: var(--rc-primary);
    font-size: .85rem;
}
.rc-dark .rc-liste li { color: rgba(255, 255, 255, .8); }
.rc-dark .rc-liste li:before { color: var(--rc-cyan); }

/* ------------------------------------------------------------ hizmet kartı -- */
.rc-hizmet {
    display: block;
    background: #fff;
    border: 1px solid var(--rc-line);
    border-radius: var(--rc-radius);
    overflow: hidden;
    height: 100%;
    transition: all .25s ease;
}
.rc-hizmet:hover { transform: translateY(-5px); box-shadow: var(--rc-shadow-lg); border-color: transparent; }
.rc-hizmet-gorsel { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--rc-soft); }
.rc-hizmet-gorsel img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.rc-hizmet:hover .rc-hizmet-gorsel img { transform: scale(1.06); }
.rc-hizmet-ikon {
    position: absolute;
    right: 1.1rem; bottom: -22px;
    width: 52px; height: 52px;
    display: flex; align-items: center; justify-content: center;
    border-radius: var(--rc-radius-sm);
    background: var(--rc-gradient);
    color: #fff;
    font-size: 1.2rem;
    box-shadow: 0 6px 16px rgba(12, 119, 188, .35);
}
.rc-hizmet-govde { padding: 1.5rem 1.4rem 1.6rem; }
.rc-hizmet-govde h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.rc-hizmet-govde p { color: var(--rc-muted); font-size: .92rem; margin-bottom: .9rem; }
.rc-devam {
    font-family: var(--rc-head);
    font-weight: 600;
    font-size: .85rem;
    color: var(--rc-primary);
    display: inline-flex;
    align-items: center;
    gap: .4rem;
}
.rc-hizmet:hover .rc-devam { gap: .7rem; }

/* -------------------------------------------------------------- sayaçlar --- */
.rc-sayaclar {
    position: relative;
    background: var(--rc-navy) url('../images/redcom/hizmetler-genel.jpg') center/cover fixed;
    color: #fff;
}
.rc-sayaclar:before { content: ''; position: absolute; inset: 0; background: rgba(9, 30, 48, .92); }
.rc-sayaclar .container { position: relative; z-index: 2; }
.rc-sayac { text-align: center; padding: 1rem .5rem; }
.rc-sayac i { font-size: 1.7rem; color: var(--rc-cyan); margin-bottom: .8rem; display: block; }
.rc-sayac b {
    display: block;
    font-family: var(--rc-head);
    font-size: clamp(2rem, 4vw, 2.9rem);
    line-height: 1;
    color: #fff;
}
.rc-sayac span { font-size: .92rem; color: rgba(255, 255, 255, .75); }

/* ---------------------------------------------------------------- süreç ---- */
.rc-adim { position: relative; text-align: center; padding: 0 1rem; }
.rc-adim-no {
    width: 74px; height: 74px;
    margin: 0 auto 1.2rem;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: #fff;
    border: 2px dashed var(--rc-primary);
    font-family: var(--rc-head);
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--rc-primary);
    position: relative;
    z-index: 2;
}
.rc-adim h3 { font-size: 1.05rem; margin-bottom: .4rem; }
.rc-adim p { color: var(--rc-muted); font-size: .92rem; margin: 0; }
.rc-adimlar { position: relative; }
.rc-adimlar:before {
    content: '';
    position: absolute;
    top: 37px; left: 12%; right: 12%;
    border-top: 2px dashed var(--rc-line);
    z-index: 1;
}

/* -------------------------------------------------------------- proje kartı -- */
.rc-filtre {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0 0 2.4rem;
}
.rc-filtre li { margin: 0; }
.rc-filtre button {
    background: #fff;
    border: 1px solid var(--rc-line);
    border-radius: 50px;
    padding: .55rem 1.15rem;
    font-family: var(--rc-head);
    font-weight: 600;
    font-size: .85rem;
    color: var(--rc-muted);
    cursor: pointer;
    transition: all .2s ease;
}
.rc-filtre button:hover { color: var(--rc-primary); border-color: var(--rc-primary); }
.rc-filtre button.secili { background: var(--rc-gradient); border-color: transparent; color: #fff; }

.rc-proje {
    display: block;
    position: relative;
    border-radius: var(--rc-radius);
    overflow: hidden;
    height: 100%;
    background: var(--rc-navy);
}
.rc-proje img {
    width: 100%; height: 100%;
    aspect-ratio: 16 / 11;
    object-fit: cover;
    transition: transform .5s ease, opacity .3s ease;
    opacity: .82;
}
.rc-proje:hover img { transform: scale(1.06); opacity: .55; }
.rc-proje-bilgi {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 1.5rem 1.4rem;
    background: linear-gradient(to top, rgba(11, 35, 56, .95), rgba(11, 35, 56, 0));
    color: #fff;
}
.rc-etiket {
    display: inline-block;
    font-family: var(--rc-head);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    background: var(--rc-primary);
    color: #fff;
    padding: .3rem .7rem;
    border-radius: 4px;
    margin-bottom: .7rem;
}
.rc-proje-bilgi h3 { color: #fff; font-size: 1.08rem; margin-bottom: .35rem; }
.rc-proje-bilgi p { font-size: .88rem; color: rgba(255, 255, 255, .8); margin: 0; }

/* ----------------------------------------------------------- referans ------ */
.rc-referans {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    text-align: center;
    background: #fff;
    border: 1px solid var(--rc-line);
    border-radius: var(--rc-radius);
    padding: 1.6rem 1rem;
    height: 100%;
    transition: all .25s ease;
}
.rc-referans:hover { box-shadow: var(--rc-shadow-lg); transform: translateY(-3px); }
.rc-referans-logo {
    width: 72px; height: 72px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: var(--rc-soft);
    color: var(--rc-primary);
    font-family: var(--rc-head);
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: .02em;
}
.rc-referans-logo img { width: 100%; height: 100%; object-fit: contain; border-radius: 50%; filter: grayscale(1); transition: filter .25s; }
.rc-referans:hover .rc-referans-logo img { filter: none; }
.rc-referans b { font-family: var(--rc-head); font-size: .95rem; color: var(--rc-navy); }
.rc-referans span { font-size: .8rem; color: var(--rc-muted); }

.rc-yorum {
    background: #fff;
    border-radius: var(--rc-radius);
    padding: 2rem 1.8rem;
    box-shadow: var(--rc-shadow);
    margin: 0 .75rem;
    position: relative;
}
.rc-yorum:before {
    content: '\f10d';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--rc-primary);
    opacity: .15;
    font-size: 2.4rem;
    position: absolute;
    right: 1.4rem; top: 1.1rem;
}
.rc-yorum p { font-style: italic; color: var(--rc-ink); }
.rc-yorum footer { font-family: var(--rc-head); font-size: .88rem; color: var(--rc-navy); font-weight: 600; }
.rc-yorum footer span { display: block; font-weight: 400; color: var(--rc-muted); font-size: .82rem; }

/* --------------------------------------------------------------- blog kartı -- */
.rc-blog {
    background: #fff;
    border: 1px solid var(--rc-line);
    border-radius: var(--rc-radius);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all .25s ease;
}
.rc-blog:hover { transform: translateY(-5px); box-shadow: var(--rc-shadow-lg); border-color: transparent; }
.rc-blog-gorsel { aspect-ratio: 16 / 10; overflow: hidden; }
.rc-blog-gorsel img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.rc-blog:hover .rc-blog-gorsel img { transform: scale(1.06); }
.rc-blog-govde { padding: 1.4rem; display: flex; flex-direction: column; flex: 1; }
.rc-blog-meta {
    font-size: .78rem;
    color: var(--rc-muted);
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: .6rem;
}
.rc-blog-meta i { color: var(--rc-primary); margin-right: .3rem; }
.rc-blog-govde h3 { font-size: 1.08rem; margin-bottom: .5rem; }
.rc-blog-govde h3 a { color: var(--rc-navy); }
.rc-blog-govde h3 a:hover { color: var(--rc-primary); }
.rc-blog-govde p { color: var(--rc-muted); font-size: .9rem; flex: 1; }

/* ------------------------------------------------------------- sayfa başlığı -- */
.rc-sayfa-basi {
    position: relative;
    background: var(--rc-navy) center/cover no-repeat;
    color: #fff;
    padding: 80px 0 74px;
    text-align: center;
}
.rc-sayfa-basi:before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 35, 56, .88), rgba(11, 35, 56, .78));
}
.rc-sayfa-basi .container { position: relative; z-index: 2; }
.rc-sayfa-basi h1 { color: #fff; margin-bottom: .8rem; }
.rc-sayfa-basi p { color: rgba(255, 255, 255, .82); max-width: 720px; margin: 0 auto; }

.rc-kirinti {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: .5rem;
    padding: 0;
    margin: 1rem 0 0;
    font-size: .86rem;
}
.rc-kirinti li { margin: 0; color: rgba(255, 255, 255, .65); }
.rc-kirinti li + li:before { content: '/'; margin-right: .5rem; opacity: .5; }
.rc-kirinti a { color: rgba(255, 255, 255, .85); }
.rc-kirinti a:hover { color: var(--rc-cyan); }
.rc-kirinti [aria-current] { color: var(--rc-cyan); }

/* ------------------------------------------------------------ içerik metni -- */
.rc-icerik { font-size: 1.02rem; }
.rc-icerik h2 {
    font-size: 1.55rem;
    margin-top: 2.4rem;
    padding-bottom: .6rem;
    border-bottom: 1px solid var(--rc-line);
}
.rc-icerik h2:first-child { margin-top: 0; }
.rc-icerik h3 { font-size: 1.2rem; margin-top: 1.8rem; color: var(--rc-primary-dark); }
.rc-icerik ul { list-style: none; padding: 0; }
.rc-icerik ul li {
    position: relative;
    padding-left: 1.7rem;
    margin-bottom: .55rem;
}
.rc-icerik ul li:before {
    content: '';
    position: absolute;
    left: .25rem; top: .72em;
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--rc-primary);
}
.rc-icerik ol { padding-left: 1.3rem; }
.rc-icerik ol li::marker { color: var(--rc-primary); font-weight: 700; }
.rc-icerik blockquote {
    margin: 1.8rem 0;
    padding: 1.3rem 1.5rem;
    background: var(--rc-soft);
    border-left: 4px solid var(--rc-primary);
    border-radius: 0 var(--rc-radius-sm) var(--rc-radius-sm) 0;
}
.rc-icerik blockquote p:last-child { margin-bottom: 0; }
.rc-icerik code {
    background: var(--rc-soft);
    padding: .12em .4em;
    border-radius: 4px;
    font-size: .92em;
}
.tablo-sarmal { overflow-x: auto; margin: 1.5rem 0; }
.icerik-tablo {
    width: 100%;
    border-collapse: collapse;
    font-size: .95rem;
    min-width: 420px;
}
.icerik-tablo th, .icerik-tablo td {
    padding: .8rem 1rem;
    border: 1px solid var(--rc-line);
    text-align: left;
    vertical-align: top;
}
.icerik-tablo th { background: var(--rc-soft); font-family: var(--rc-head); color: var(--rc-navy); }
.icerik-tablo tr:nth-child(even) td { background: #fafcfd; }

/* -------------------------------------------------------------- kenar çubuğu -- */
.rc-yan { position: sticky; top: 100px; }
.rc-kutu {
    background: #fff;
    border: 1px solid var(--rc-line);
    border-radius: var(--rc-radius);
    padding: 1.4rem;
    margin-bottom: 1.5rem;
}
.rc-kutu h3 {
    font-size: 1.02rem;
    padding-bottom: .7rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--rc-line);
    position: relative;
}
.rc-kutu h3:after {
    content: '';
    position: absolute;
    left: 0; bottom: -1px;
    width: 46px; height: 2px;
    background: var(--rc-gradient);
}
.rc-yan-liste { list-style: none; padding: 0; margin: 0; }
.rc-yan-liste li { margin: 0; border-bottom: 1px solid var(--rc-line); }
.rc-yan-liste li:last-child { border-bottom: 0; }
.rc-yan-liste a {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .7rem 0;
    font-size: .92rem;
    color: var(--rc-ink);
    font-family: var(--rc-head);
    font-weight: 500;
}
.rc-yan-liste a i { color: var(--rc-primary); width: 18px; text-align: center; }
.rc-yan-liste a:hover, .rc-yan-liste a.aktif { color: var(--rc-primary); padding-left: .4rem; }

.rc-yan-cta {
    background: var(--rc-navy) center/cover;
    border-radius: var(--rc-radius);
    padding: 1.8rem 1.5rem;
    color: #fff;
    text-align: center;
}
.rc-yan-cta h3 { color: #fff; font-size: 1.15rem; }
.rc-yan-cta p { color: rgba(255, 255, 255, .78); font-size: .9rem; }
.rc-yan-cta .rc-tel { font-family: var(--rc-head); font-size: 1.25rem; color: var(--rc-cyan); display: block; margin-bottom: 1rem; }

/* ------------------------------------------------------------------ akordeon -- */
.rc-akordeon { border: 1px solid var(--rc-line); border-radius: var(--rc-radius); overflow: hidden; background: #fff; }
.rc-akordeon + .rc-akordeon { margin-top: .8rem; }
.rc-akordeon-bas {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    text-align: left;
    background: none;
    border: 0;
    padding: 1.15rem 1.3rem;
    font-family: var(--rc-head);
    font-weight: 600;
    font-size: 1rem;
    color: var(--rc-navy);
    cursor: pointer;
}
.rc-akordeon-bas i { color: var(--rc-primary); transition: transform .25s ease; flex-shrink: 0; }
.rc-akordeon.acik .rc-akordeon-bas { color: var(--rc-primary); }
.rc-akordeon.acik .rc-akordeon-bas i { transform: rotate(180deg); }
.rc-akordeon-govde { display: none; padding: 0 1.3rem 1.3rem; color: var(--rc-muted); }
.rc-akordeon.acik .rc-akordeon-govde { display: block; }
.rc-akordeon-govde p:last-child { margin-bottom: 0; }

/* ---------------------------------------------------------------- CTA bandı -- */
.rc-cta {
    background: var(--rc-gradient);
    color: #fff;
    padding: 56px 0;
}
.rc-cta .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}
.rc-cta h2 { color: #fff; margin-bottom: .4rem; }
.rc-cta p { color: rgba(255, 255, 255, .9); margin: 0; max-width: 620px; }
.rc-cta-butonlar { display: flex; gap: .8rem; flex-wrap: wrap; }
.rc-cta .rc-btn-primary { background: #fff; color: var(--rc-primary); box-shadow: none; }
.rc-cta .rc-btn-primary:hover { background: var(--rc-navy); color: #fff; }

/* ------------------------------------------------------------------ formlar -- */
.rc-form-kutu {
    background: #fff;
    border-radius: var(--rc-radius);
    box-shadow: var(--rc-shadow);
    padding: 2rem;
}
.rc-alan { margin-bottom: 1.1rem; }
.rc-alan label {
    display: block;
    font-family: var(--rc-head);
    font-weight: 600;
    font-size: .86rem;
    color: var(--rc-navy);
    margin-bottom: .4rem;
}
.rc-alan label .zorunlu { color: var(--rc-err); }
.rc-alan input[type=text],
.rc-alan input[type=tel],
.rc-alan input[type=email],
.rc-alan input[type=password],
.rc-alan select,
.rc-alan textarea {
    width: 100%;
    border: 1px solid var(--rc-line);
    border-radius: var(--rc-radius-sm);
    background: #fff;
    padding: .8rem 1rem;
    font-family: var(--rc-body);
    font-size: .95rem;
    color: var(--rc-ink);
    transition: border-color .2s ease, box-shadow .2s ease;
}
.rc-alan textarea { min-height: 140px; resize: vertical; }
.rc-alan input:focus, .rc-alan select:focus, .rc-alan textarea:focus {
    outline: 0;
    border-color: var(--rc-primary);
    box-shadow: 0 0 0 3px rgba(12, 119, 188, .12);
}
.rc-alan.hatali input, .rc-alan.hatali select, .rc-alan.hatali textarea { border-color: var(--rc-err); }
.rc-hata { color: var(--rc-err); font-size: .82rem; margin-top: .3rem; display: block; }
.rc-ipucu { color: var(--rc-muted); font-size: .82rem; margin-top: .3rem; display: block; }

.rc-secimler { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: .5rem; }
.rc-onay {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    font-size: .9rem;
    color: var(--rc-muted);
    cursor: pointer;
    margin: 0;
    font-weight: 400;
    font-family: var(--rc-body);
}
.rc-onay input { margin-top: .28rem; width: 17px; height: 17px; accent-color: var(--rc-primary); flex-shrink: 0; }
.rc-secimler .rc-onay {
    border: 1px solid var(--rc-line);
    border-radius: var(--rc-radius-sm);
    padding: .6rem .8rem;
    background: #fff;
    align-items: center;
}
.rc-secimler .rc-onay:hover { border-color: var(--rc-primary); }

.rc-hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.rc-mesaj {
    border-radius: var(--rc-radius-sm);
    padding: 1rem 1.2rem;
    margin-bottom: 1.4rem;
    font-size: .95rem;
    display: flex;
    gap: .7rem;
    align-items: flex-start;
}
.rc-mesaj i { margin-top: .25rem; }
.rc-mesaj-ok { background: #eaf7ef; color: #14663a; border: 1px solid #bfe5cd; }
.rc-mesaj-hata { background: #fdecea; color: #8f231d; border: 1px solid #f5c3bf; }

/* ---------------------------------------------------------------- iletişim -- */
/* İkon üstte, metin tam genişlikte — yan yana dizilimde adres satırları kırılıyordu. */
.rc-iletisim-kart {
    background: #fff;
    border: 1px solid var(--rc-line);
    border-radius: var(--rc-radius);
    padding: 1.6rem 1.4rem;
    height: 100%;
    transition: box-shadow .25s ease, transform .25s ease, border-color .25s ease;
}
.rc-iletisim-kart:hover {
    border-color: transparent;
    box-shadow: var(--rc-shadow-lg);
    transform: translateY(-3px);
}
.rc-iletisim-kart > i {
    width: 46px; height: 46px;
    display: flex; align-items: center; justify-content: center;
    border-radius: var(--rc-radius-sm);
    background: var(--rc-gradient);
    color: #fff;
    font-size: 1.05rem;
    margin-bottom: 1.1rem;
}
.rc-iletisim-kart h3 {
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .11em;
    text-transform: uppercase;
    color: var(--rc-muted);
    margin-bottom: .5rem;
}
.rc-iletisim-kart p,
.rc-iletisim-kart a {
    font-size: .95rem;
    line-height: 1.65;
    color: var(--rc-ink);
    margin: 0;
}
.rc-iletisim-kart a { display: block; font-weight: 500; }
.rc-iletisim-kart a + a { margin-top: .3rem; }
.rc-iletisim-kart a:hover { color: var(--rc-primary); }
.rc-kart-mini { color: #25d366; margin-right: .4rem; }
.rc-harita { border-radius: var(--rc-radius); overflow: hidden; box-shadow: var(--rc-shadow); line-height: 0; }
.rc-harita iframe { width: 100%; height: 420px; border: 0; }

/* -------------------------------------------------------------------- IBAN -- */
.rc-iban {
    background: #fff;
    border: 1px solid var(--rc-line);
    border-left: 4px solid var(--rc-primary);
    border-radius: var(--rc-radius);
    padding: 1.5rem;
    height: 100%;
}
.rc-iban h3 { margin-bottom: 1rem; }
.rc-iban dl { margin: 0; }
.rc-iban dt { font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; color: var(--rc-muted); }
.rc-iban dd {
    margin: 0 0 .9rem;
    font-family: var(--rc-head);
    font-weight: 600;
    color: var(--rc-navy);
    word-break: break-word;
}
.rc-iban .iban-no { font-size: 1.05rem; letter-spacing: .02em; }
.rc-kopyala {
    background: var(--rc-soft);
    border: 1px solid var(--rc-line);
    border-radius: 6px;
    padding: .35rem .7rem;
    font-size: .8rem;
    font-family: var(--rc-head);
    color: var(--rc-primary);
    cursor: pointer;
}
.rc-kopyala:hover { background: var(--rc-primary); color: #fff; border-color: var(--rc-primary); }

/* ------------------------------------------------------------------ footer -- */
.rc-footer { background: var(--rc-navy); color: rgba(255, 255, 255, .7); padding: 70px 0 0; font-size: .93rem; }
.rc-footer h3 {
    color: #fff;
    font-size: 1.05rem;
    margin-bottom: 1.3rem;
    position: relative;
    padding-bottom: .7rem;
}
.rc-footer h3:after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 42px; height: 2px;
    background: var(--rc-cyan);
}
.rc-footer a { color: rgba(255, 255, 255, .7); }
.rc-footer a:hover { color: var(--rc-cyan); }
.rc-footer ul { list-style: none; padding: 0; margin: 0; }
.rc-footer ul li { margin-bottom: .55rem; }
.rc-footer-logo { height: 38px; width: auto; margin-bottom: 1.2rem; filter: brightness(0) invert(1); opacity: .95; }
.rc-footer-iletisim li { display: flex; gap: .7rem; align-items: flex-start; }
.rc-footer-iletisim i { color: var(--rc-cyan); margin-top: .35rem; width: 16px; text-align: center; flex-shrink: 0; }
.rc-footer-sosyal { display: flex; gap: .5rem; margin-top: 1.2rem; }
.rc-footer-sosyal a {
    width: 36px; height: 36px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
}
.rc-footer-sosyal a:hover { background: var(--rc-primary); color: #fff; }
.rc-footer-alt {
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding: 1.3rem 0;
    font-size: .86rem;
}
.rc-footer-alt .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.rc-footer-alt ul { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.rc-footer-alt li { margin: 0; }
.rc-altyapi { color: rgba(255, 255, 255, .55); }
.rc-altyapi a { color: rgba(255, 255, 255, .8); font-weight: 500; }
.rc-altyapi a:hover { color: var(--rc-cyan); }
.rc-altyapi .rc-ayrac { opacity: .35; margin: 0 .25rem; }

/* --------------------------------------------------------- yüzen butonlar -- */
.rc-whatsapp {
    position: fixed;
    right: 20px; bottom: 20px;
    width: 54px; height: 54px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 6px 20px rgba(37, 211, 102, .45);
    z-index: 300;
}
.rc-whatsapp:hover { color: #fff; transform: scale(1.06); }
.rc-yukari {
    position: fixed;
    right: 22px; bottom: 86px;
    width: 44px; height: 44px;
    border: 0;
    border-radius: 50%;
    background: var(--rc-navy);
    color: #fff;
    display: none;
    align-items: center; justify-content: center;
    cursor: pointer;
    z-index: 300;
}
.rc-yukari.gorunur { display: flex; }
.rc-yukari:hover { background: var(--rc-primary); }

/* ------------------------------------------------------------ çerez bandı -- */
.rc-cerez {
    position: fixed;
    left: 16px; right: 16px; bottom: 16px;
    max-width: 640px;
    margin: 0 auto;
    background: #fff;
    border-radius: var(--rc-radius);
    box-shadow: var(--rc-shadow-lg);
    padding: 1.2rem 1.4rem;
    z-index: 350;
    display: none;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    font-size: .9rem;
}
.rc-cerez.gorunur { display: flex; }
.rc-cerez p { margin: 0; flex: 1 1 280px; color: var(--rc-muted); }
.rc-cerez .rc-btn { padding: .65rem 1.2rem; font-size: .85rem; }

/* -------------------------------------------------------------- 404 sayfa -- */
.rc-404 { text-align: center; padding: 90px 0; }
.rc-404 b {
    display: block;
    font-family: var(--rc-head);
    font-size: clamp(4rem, 14vw, 9rem);
    line-height: 1;
    background: var(--rc-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* ------------------------------------------------------------- responsive -- */
@media (max-width: 1199px) {
    .rc-nav > ul > li > a { padding: 1.5rem .6rem; font-size: .87rem; }
    .rc-logo img { height: 34px; }
}

@media (max-width: 991px) {
    .rc-section { padding: 60px 0; }
    .rc-nav, .rc-header-cta { display: none; }
    .rc-menu-btn { display: flex; }
    .rc-header .container { min-height: 66px; }
    .rc-slayt { min-height: 500px; }
    .rc-ozellikler { margin-top: 2.5rem; }
    .rc-adimlar:before { display: none; }
    .rc-yan { position: static; margin-top: 2.5rem; }
    .rc-topbar .rc-social { display: none; }
    .rc-cta .container { flex-direction: column; text-align: center; }
    .rc-cta p { margin-left: auto; margin-right: auto; }
}

@media (max-width: 767px) {
    body { font-size: 15.5px; }
    .rc-section { padding: 48px 0; }
    .rc-sayfa-basi { padding: 56px 0 50px; }
    .rc-slayt { min-height: 440px; }
    .rc-slayt-butonlar .rc-btn { flex: 1 1 100%; justify-content: center; }
    .rc-form-kutu { padding: 1.4rem; }
    .rc-topbar { font-size: .8rem; }
    .rc-topbar .container { justify-content: center; min-height: 38px; }
    .rc-topbar ul { gap: 1rem; justify-content: center; }
    .rc-footer-alt .container { justify-content: center; text-align: center; }
    .rc-harita iframe { height: 320px; }
}

@media print {
    .rc-topbar, .rc-header, .rc-footer, .rc-whatsapp, .rc-yukari, .rc-cerez, .rc-cta { display: none !important; }
}
