/* ==========================================================
   Orjinal Mutfak - Site Stilleri
   Stack: UIkit 3 + Custom + GSAP
   ========================================================== */

:root {
    --container-max:     1680px;       /* yildizlar tarzi genis container */
    --om-primary:        #0b1d33;       /* derin lacivert - kurumsal */
    --om-primary-2:      #122a4a;
    --om-accent:         #d4a259;       /* sicak altin - vurgu */
    --om-accent-2:       #b88842;
    --om-text:           #1a2236;
    --om-muted:          #6b7280;
    --om-bg:             #ffffff;
    --om-bg-soft:        #f6f8fb;
    --om-bg-dark:        #0a162a;
    --om-border:         #e5e9f0;
    --om-radius:         12px;
    --om-radius-lg:      18px;
    --om-shadow-sm:      0 2px 10px rgba(11,29,51,.06);
    --om-shadow-md:      0 12px 36px rgba(11,29,51,.10);
    --om-shadow-lg:      0 24px 60px rgba(11,29,51,.16);
    --om-trans:          .35s cubic-bezier(.22, 1, .36, 1);
    /* Yildizlar tipografi sistemi: Inter (baslik) + Poppins (govde) + Urbanist (menu) */
    --om-font-body:      'Poppins', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    --om-font-heading:   'Inter', system-ui, -apple-system, sans-serif;
    --om-font-menu:      'Urbanist', 'Inter', system-ui, sans-serif;
    --om-font-display:   'Inter', system-ui, -apple-system, sans-serif;
    --om-font-sans:      'Poppins', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: hidden; }
body { overflow-x: hidden; max-width: 100vw; font-family: var(--om-font-sans); }

.uk-container-large { max-width: var(--container-max); }

body {
    font-family: var(--om-font-sans);
    color: var(--om-text);
    background: var(--om-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
    font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--om-font-display);
    color: var(--om-primary);
    letter-spacing: -.025em;
    font-weight: 300;
    line-height: 1.2;
}
h1 { font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1.1; font-weight: 200; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); line-height: 1.15; font-weight: 300; }
h3 { font-size: clamp(1.2rem, 2vw, 1.55rem); font-weight: 400; }
h4, h5, h6 { font-weight: 500; }

a { color: var(--om-primary); text-decoration: none; transition: color var(--om-trans); }
a:hover { color: var(--om-accent); }

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

/* ==========================================================
   HEADER WRAP (yildizlar tarzi - transparent + sticky + scroll-degisim)
   ========================================================== */
.om-header-wrap { position: sticky; top: 0; left: 0; right: 0; z-index: 980; transition: all var(--om-trans); }
.om-header { position: relative; z-index: 980; background: #fff; border-bottom: 1px solid var(--om-border); transition: all var(--om-trans); }
.om-header__inner { transition: all var(--om-trans); }
.om-header__inner .uk-navbar { min-height: 78px; padding: 0; }

/* Anasayfada hero uzerinde transparent baslar */
body.is-home .om-header-wrap { position: fixed; }
body.is-home .om-header { background: transparent; border-bottom-color: transparent; }
body.is-home .om-header::before {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,.45), transparent);
    pointer-events: none; z-index: -1;
}
body.is-home .om-nav > li > a { color: #fff !important; }
body.is-home .om-nav > li:hover > a,
body.is-home .om-nav > li.uk-active > a { color: var(--om-accent) !important; }
body.is-home .om-iconbtn { color: #fff; }
body.is-home .om-iconbtn:hover { background: rgba(255,255,255,.12); color: #fff; }
body.is-home .om-logo__text strong { color: #fff; }
body.is-home .om-logo__text small  { color: rgba(255,255,255,.7); }
body.is-home .om-lang-switch a { color: rgba(255,255,255,.7); }
body.is-home .om-lang-switch a.is-active { color: var(--om-accent); }
body.is-home .om-btn--primary { background: rgba(255,255,255,.95); color: var(--om-primary); }
body.is-home .om-btn--primary:hover { background: var(--om-accent); color: #fff; }

/* Scroll edilince beyaza doner */
body.is-home.is-scrolled .om-header { background: rgba(255,255,255,.96); backdrop-filter: saturate(1.2) blur(12px); border-bottom-color: var(--om-border); box-shadow: 0 2px 18px rgba(11,29,51,.06); }
body.is-home.is-scrolled .om-header::before { display: none; }
body.is-home.is-scrolled .om-nav > li > a { color: var(--om-text) !important; }
body.is-home.is-scrolled .om-nav > li:hover > a,
body.is-home.is-scrolled .om-nav > li.uk-active > a { color: var(--om-primary) !important; }
body.is-home.is-scrolled .om-iconbtn { color: var(--om-primary); }
body.is-home.is-scrolled .om-logo__text strong { color: var(--om-primary); }
body.is-home.is-scrolled .om-logo__text small { color: var(--om-muted); }
body.is-home.is-scrolled .om-lang-switch a { color: var(--om-muted); }
body.is-home.is-scrolled .om-lang-switch a.is-active { color: var(--om-accent); }
body.is-home.is-scrolled .om-btn--primary { background: var(--om-primary); color: #fff; }
body.is-home.is-scrolled .om-btn--primary:hover { background: var(--om-primary-2); }

body:not(.is-home) .om-header { box-shadow: 0 1px 0 var(--om-border); }
body:not(.is-home).is-scrolled .om-header { box-shadow: 0 4px 18px rgba(11,29,51,.06); }

/* LOGO */
.om-logo { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.om-logo__img { height: 44px; width: auto; transition: transform var(--om-trans); }
.om-logo:hover .om-logo__img { transform: scale(1.04); }
.om-logo__text { display: flex; flex-direction: column; line-height: 1.1; }
.om-logo__text strong { font-family: var(--om-font-heading); font-weight: 800; font-size: 18px; color: var(--om-primary); letter-spacing: -.02em; }
.om-logo__text small { font-size: 11px; color: var(--om-muted); letter-spacing: .14em; text-transform: uppercase; margin-top: 2px; }
@media (max-width: 640px) { .om-logo__img { height: 36px; } .om-logo__text strong { font-size: 16px; } .om-logo__text small { display:none; } }

/* IKON BUTON (arama vs.) */
.om-iconbtn {
    display: inline-flex; align-items: center; justify-content: center;
    width: 42px; height: 42px; border-radius: 50%;
    color: var(--om-text); background: transparent;
    transition: all var(--om-trans);
    margin-right: 6px;
}
.om-iconbtn:hover { background: var(--om-bg-soft); color: var(--om-primary); }

/* DIL DEGISTIRICI */
.om-lang-switch { display: inline-flex; align-items: center; margin: 0 14px; gap: 4px; font-size: 12px; font-weight: 700; }
.om-lang-switch a { color: var(--om-muted); padding: 4px 6px; transition: color var(--om-trans); letter-spacing: .04em; }
.om-lang-switch a.is-active { color: var(--om-accent); }
.om-lang-switch a:hover { color: var(--om-primary); }

/* ESKI TOPBAR ARTIK GIZLI */
.om-topbar {
    display: none;
    background: var(--om-primary);
    color: rgba(255,255,255,.8);
    font-size: 13px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.om-topbar a { color: rgba(255,255,255,.8); margin-right: 18px; display: inline-flex; align-items: center; gap: 6px; }
.om-topbar a:hover { color: var(--om-accent); }
.om-topbar__right a { margin-right: 12px; }
.om-lang { margin-left: 10px; padding-left: 12px; border-left: 1px solid rgba(255,255,255,.15); }
.om-lang a { margin-right: 8px; font-weight: 600; }
.om-lang a.is-active { color: var(--om-accent); }

@media (max-width: 640px) {
    .om-topbar { display: none; }
}

/* ==========================================================
   ANA NAVIGASYON (yildizlar birebir)
   ========================================================== */
.om-nav { margin-left: 3rem; }
@media (max-width: 1199px) { .om-nav { margin-left: 1.5rem; } }
.om-nav > li > a {
    position: relative;
    font-family: var(--om-font-menu);
    font-weight: 500;
    font-size: 14px;
    color: var(--om-text) !important;
    padding: 0 .75rem !important;
    text-transform: none;
    letter-spacing: .04em;
    min-height: 68px;
    white-space: nowrap;
    transition: color var(--om-trans);
}
.om-nav > li.uk-active > a { font-weight: 700; }
.om-nav > li > a::after {
    content: "";
    position: absolute;
    left: .75rem; right: .75rem; bottom: 18px;
    height: 2px;
    background: var(--om-accent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform var(--om-trans);
}
.om-nav > li:hover > a,
.om-nav > li.uk-active > a { color: var(--om-primary) !important; }
.om-nav > li:hover > a::after,
.om-nav > li.uk-active > a::after { transform: scaleX(1); }

/* Anasayfada (transparent header) override yıldızlar gibi */
body.is-home:not(.is-scrolled) .om-nav > li > a { color: #fff !important; }
body.is-home:not(.is-scrolled) .om-nav > li:hover > a,
body.is-home:not(.is-scrolled) .om-nav > li.uk-active > a { color: var(--om-accent) !important; }

.uk-navbar-toggle { color: var(--om-primary); }
.om-header__inner .uk-navbar { min-height: 68px !important; }

/* ==========================================================
   MEGA MENU (geniş, 4 sutun, yildizlar tarzi)
   ========================================================== */
/* Mega menü container-max genişliğinde, viewport ortasında (yıldızlar tarzı) */
.uk-navbar-dropdown.om-megamenu {
    width: min(var(--container-max), calc(100vw - 40px)) !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    padding: 36px 44px 28px;
    border-radius: 16px;
    border: 1px solid var(--om-border);
    box-shadow: 0 30px 80px rgba(11,29,51,.18);
    background: #fff;
    box-sizing: border-box;
    margin-top: 8px;
}
.uk-navbar-dropdown.om-megamenu.uk-open { display: block !important; }
.om-megamenu__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.om-megamenu__col { min-width: 0; }
.om-megamenu__head {
    display: flex; align-items: center; gap: 10px;
    padding-bottom: 12px; margin-bottom: 12px;
    border-bottom: 2px solid var(--om-accent);
    color: var(--om-primary);
    transition: color var(--om-trans);
}
.om-megamenu__head:hover { color: var(--om-accent); }
.om-megamenu__head span[uk-icon],
.om-megamenu__icon { color: var(--om-accent); flex: 0 0 auto; display: inline-flex; align-items: center; justify-content: center; }
.om-megamenu__icon svg { width: 22px; height: 22px; display: block; }
.om-megamenu__head strong {
    font-family: var(--om-font-menu);
    font-weight: 700; font-size: 14px;
    letter-spacing: .02em;
    color: inherit;
}
.om-megamenu__list {
    list-style: none; padding: 0; margin: 0;
}
.om-megamenu__list li { margin-bottom: 6px; }
.om-megamenu__list a {
    display: block;
    padding: 6px 8px;
    border-radius: 6px;
    color: var(--om-text);
    font-size: 13.5px;
    font-weight: 400;
    transition: all var(--om-trans);
}
.om-megamenu__list a:hover {
    background: var(--om-bg-soft);
    color: var(--om-primary);
    padding-left: 12px;
}
.om-megamenu__cta {
    margin-top: 22px; padding-top: 18px;
    border-top: 1px dashed var(--om-border);
    text-align: right;
}
.om-megamenu__cta a {
    color: var(--om-primary); font-weight: 600; font-size: 13px;
    display: inline-flex; align-items: center; gap: 6px;
    font-family: var(--om-font-menu);
}
.om-megamenu__cta a:hover { color: var(--om-accent); }
@media (max-width: 1199px) {
    .om-megamenu__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

/* ==========================================================
   ARAMA MODAL
   ========================================================== */
.om-search-modal { max-width: 720px; padding: 50px 40px; border-radius: 16px; }
.om-search-modal__title { font-family: var(--om-font-heading); margin: 0 0 20px; color: var(--om-primary); }
.om-search-modal__input {
    height: 56px; font-size: 17px; padding-left: 50px;
    border: 1px solid var(--om-border); border-radius: 12px;
}
.om-search-modal .uk-form-icon { color: var(--om-muted); }
.om-search-suggestions { margin-top: 16px; max-height: 360px; overflow-y: auto; }
.om-search-suggestion {
    display: flex; align-items: center; gap: 14px; padding: 10px 12px;
    border-radius: 10px; transition: background var(--om-trans);
    color: var(--om-text); text-decoration: none;
}
.om-search-suggestion:hover { background: var(--om-bg-soft); color: var(--om-primary); }
.om-search-suggestion img { width: 48px; height: 48px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }
.om-search-suggestion .om-search-suggestion__cat { font-size: 11px; color: var(--om-accent); text-transform: uppercase; letter-spacing: .08em; display: block; }
.om-search-suggestion .om-search-suggestion__title { font-weight: 600; color: var(--om-primary); display: block; }

/* ==========================================================
   BUTONLAR
   ========================================================== */
.om-btn {
    border-radius: 999px;
    padding: 0 26px;
    height: 46px;
    line-height: 46px;
    font-family: var(--om-font-menu);
    font-weight: 600;
    font-size: 13.5px;
    letter-spacing: .04em;
    text-transform: none;
    transition: all var(--om-trans);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid transparent;
}
.om-btn--primary {
    background: var(--om-primary);
    color: #fff;
}
.om-btn--primary:hover {
    background: var(--om-primary-2);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--om-shadow-md);
}
.om-btn--accent {
    background: var(--om-accent);
    color: #fff;
}
.om-btn--accent:hover {
    background: var(--om-accent-2);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--om-shadow-md);
}
.om-btn--ghost {
    background: transparent;
    color: var(--om-primary);
    border-color: var(--om-border);
}
.om-btn--ghost:hover {
    border-color: var(--om-primary);
    color: var(--om-primary);
}
.om-btn--block { width: 100%; justify-content: center; }

/* ==========================================================
   OFFCANVAS (mobil menu)
   ========================================================== */
.om-offcanvas { background: var(--om-primary); padding: 60px 26px 30px; color: #fff; }
.om-offcanvas__nav { font-family: var(--om-font-menu) !important; }
.om-offcanvas__nav li a {
    color: rgba(255,255,255,.85) !important;
    font-family: var(--om-font-menu) !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    letter-spacing: .04em !important;
    padding: 12px 0 !important;
    border-bottom: 1px solid rgba(255,255,255,.08);
    transition: color var(--om-trans), padding-left var(--om-trans);
}
.om-offcanvas__nav li a:hover { color: var(--om-accent) !important; padding-left: 6px !important; }
.om-offcanvas__nav li.uk-active > a { color: var(--om-accent) !important; }
.om-offcanvas__nav li ul a { padding-left: 16px !important; font-size: 13px !important; font-weight: 500 !important; opacity: .9; }
.om-offcanvas__lang { display: flex; gap: 8px; padding: 16px 0; margin-top: 14px; border-top: 1px solid rgba(255,255,255,.1); }
.om-offcanvas__lang a {
    padding: 6px 12px;
    border-radius: 999px;
    font-family: var(--om-font-menu);
    font-size: 12px;
    font-weight: 700;
    color: rgba(255,255,255,.7);
    border: 1px solid rgba(255,255,255,.18);
}
.om-offcanvas__lang a.is-active { background: var(--om-accent); border-color: var(--om-accent); color: #fff; }
.om-offcanvas__cta { margin-top: 16px; }
.om-offcanvas__cta .om-btn--ghost {
    background: rgba(255,255,255,.06) !important;
    color: #fff !important;
    border-color: rgba(255,255,255,.18) !important;
}
.om-offcanvas__cta .om-btn--ghost:hover,
.om-offcanvas__cta .om-btn--ghost:focus,
.om-offcanvas__cta .om-btn--ghost:active {
    background: rgba(255,255,255,.14) !important;
    color: #fff !important;
    border-color: rgba(255,255,255,.3) !important;
}
.om-offcanvas__cta .om-btn--accent { color: #fff !important; }
.om-offcanvas__cta .om-btn--accent:hover { color: #fff !important; }

/* ==========================================================
   HERO / SLIDER (yildizlar tarzi - tam ekran fade + sayac + scroll)
   ========================================================== */
.om-hero {
    position: relative;
    height: 100vh;
    min-height: 620px;
    overflow: hidden;
    background: var(--om-bg-dark);
}
.om-hero__shell,
.om-hero .uk-slideshow,
.om-hero .uk-slideshow-items { height: 100%; }
.om-hero .uk-slideshow-items > li { height: 100% !important; }
.om-hero__slide {
    position: relative;
    height: 100%;
    display: flex;
    align-items: flex-end;
    color: #fff;
    background-size: cover;
    background-position: center;
    padding-bottom: 14vh;
}
.om-hero__slide::before {
    content: "";
    position: absolute; inset: 0;
    background:
        linear-gradient(180deg, rgba(0,0,0,.35) 0%, transparent 30%, transparent 50%, rgba(0,0,0,.85) 100%),
        linear-gradient(90deg, rgba(11,29,51,.7) 0%, rgba(11,29,51,.25) 60%, transparent 100%);
}
.om-hero__content { position: relative; z-index: 2; max-width: 720px; }
.om-hero__eyebrow {
    display: inline-block;
    font-family: var(--om-font-menu);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: rgba(255,255,255,.85);
    margin-bottom: 28px;
    padding-left: 50px;
    position: relative;
}
.om-hero__eyebrow::before {
    content: ""; position: absolute; left: 0; top: 50%;
    width: 36px; height: 1px; background: rgba(255,255,255,.6); transform: translateY(-50%);
}
.om-hero__title {
    font-family: var(--om-font-display);
    color: #fff;
    font-size: clamp(40px, 6.5vw, 88px);
    font-weight: 200;
    margin: 0 0 28px;
    letter-spacing: -.025em;
    line-height: 1.05;
}
.om-hero__title em { font-style: normal; color: var(--om-accent); font-weight: 300; }
.om-hero__text {
    font-family: var(--om-font-sans);
    font-size: clamp(15px, 1.3vw, 18px);
    font-weight: 300;
    color: rgba(255,255,255,.88);
    margin-bottom: 36px;
    max-width: 580px;
    line-height: 1.65;
}
.om-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* Hero sayac (sag alt) */
.om-hero__counter {
    position: absolute;
    right: max(24px, 5vw); bottom: 60px;
    z-index: 4;
    color: #fff;
    font-family: var(--om-font-heading);
    font-weight: 700;
    font-size: 16px;
    display: flex; align-items: center; gap: 14px;
}
.om-hero__counter .line { display: inline-block; width: 60px; height: 1px; background: rgba(255,255,255,.4); }
.om-hero__counter #omHeroCurrent { font-size: 28px; color: var(--om-accent); }

/* Scroll indicator */
.om-hero__scroll {
    position: absolute;
    left: 50%; bottom: 30px;
    transform: translateX(-50%);
    color: rgba(255,255,255,.7);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .25em;
    text-transform: uppercase;
    z-index: 4;
    text-decoration: none;
    padding-bottom: 24px;
}
.om-hero__scroll::after {
    content: "";
    position: absolute;
    left: 50%; bottom: 0;
    width: 1px; height: 18px;
    background: rgba(255,255,255,.7);
    transform: translateX(-50%);
    animation: omScrollLine 1.6s ease-in-out infinite;
}
@keyframes omScrollLine {
    0% { transform: translateX(-50%) scaleY(0.2); transform-origin: top; }
    50% { transform: translateX(-50%) scaleY(1); transform-origin: top; }
    51% { transform: translateX(-50%) scaleY(1); transform-origin: bottom; }
    100% { transform: translateX(-50%) scaleY(0.2); transform-origin: bottom; }
}

/* Slidenav okları daha sik gorunsun */
.om-hero__shell .uk-slidenav { color: #fff; padding: 14px; }
.om-hero__shell .uk-slidenav:hover { color: var(--om-accent); }

/* mobil */
@media (max-width: 768px) {
    .om-hero__slide {
        min-height: 92vh;
        padding-bottom: 12vh;
        align-items: center;
        text-align: center;
    }
    .om-hero__counter { display: none; }
    .om-hero__scroll { display: none; }
    .om-hero__content {
        text-align: center;
        margin: 0 auto;
        max-width: 720px;
    }
    .om-hero__eyebrow {
        padding-left: 36px;
        font-size: 11px;
        margin-bottom: 18px;
    }
    .om-hero__eyebrow::before { width: 22px; }
    .om-hero__title {
        font-size: clamp(28px, 7vw, 42px);
        margin-bottom: 18px;
    }
    .om-hero__title em { display: block; }
    .om-hero__text {
        font-size: 15px;
        margin: 0 auto 24px;
        max-width: 560px;
    }
    .om-hero__actions {
        justify-content: center;
        gap: 10px;
    }
    .om-hero__actions .om-btn {
        padding: .7rem 1.1rem;
        font-size: .82rem;
    }
}

/* ==========================================================
   BOLUM BASLIKLARI
   ========================================================== */
.om-section { padding: 90px 0; }
.om-section--soft { background: var(--om-bg-soft); }
.om-section--dark { background: var(--om-bg-dark); color: #fff; }
.om-section--dark h1, .om-section--dark h2, .om-section--dark h3 { color: #fff; }

.om-section__head { text-align: center; margin-bottom: 60px; }
.om-section__kicker {
    display: inline-block;
    color: var(--om-accent);
    font-family: var(--om-font-heading);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .15em;
    text-transform: uppercase;
    margin-bottom: 14px;
    position: relative;
    padding: 0 22px;
}
.om-section__kicker::before,
.om-section__kicker::after {
    content: "";
    width: 14px; height: 2px;
    background: var(--om-accent);
    position: absolute; top: 50%;
    transform: translateY(-50%);
}
.om-section__kicker::before { left: 0; }
.om-section__kicker::after  { right: 0; }
.om-section__title { margin: 0 0 14px; }
.om-section__lead { color: var(--om-muted); max-width: 640px; margin: 0 auto; }

/* ==========================================================
   KART (Kategori / Urun)
   ========================================================== */
.om-card {
    background: #fff;
    border-radius: var(--om-radius-lg);
    overflow: hidden;
    border: 1px solid var(--om-border);
    transition: transform var(--om-trans), box-shadow var(--om-trans), border-color var(--om-trans);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.om-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--om-shadow-lg);
    border-color: transparent;
}
.om-card__media {
    position: relative;
    aspect-ratio: 4 / 3;
    background: var(--om-bg-soft) center/cover no-repeat;
    overflow: hidden;
}
.om-card__media img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .8s ease;
}
.om-card:hover .om-card__media img { transform: scale(1.06); }
.om-card__badge {
    position: absolute;
    top: 14px; left: 14px;
    background: var(--om-accent);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 999px;
}
.om-card__body { padding: 22px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.om-card__cat { color: var(--om-accent); font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 8px; }
.om-card__title { font-size: 1.15rem; margin: 0 0 10px; line-height: 1.3; }
.om-card__title a { color: var(--om-primary); }
.om-card__title a:hover { color: var(--om-accent); }
.om-card__desc { color: var(--om-muted); font-size: .94rem; margin: 0 0 16px; }
.om-card__more {
    margin-top: auto;
    font-weight: 600;
    color: var(--om-primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.om-card__more:hover { color: var(--om-accent); }

/* ==========================================================
   KATEGORI ICON KARTLARI
   ========================================================== */
.om-cat {
    display: block;
    text-align: center;
    padding: 36px 22px;
    background: #fff;
    border: 1px solid var(--om-border);
    border-radius: var(--om-radius-lg);
    transition: all var(--om-trans);
}
.om-cat:hover {
    background: var(--om-primary);
    border-color: transparent;
    transform: translateY(-6px);
    box-shadow: var(--om-shadow-lg);
}
.om-cat:hover .om-cat__title,
.om-cat:hover .om-cat__desc { color: #fff; }
.om-cat:hover .om-cat__icon {
    background: var(--om-accent);
    color: #fff;
    transform: rotate(-8deg) scale(1.05);
}
.om-cat__icon {
    width: 70px; height: 70px;
    margin: 0 auto 18px;
    border-radius: 18px;
    background: var(--om-bg-soft);
    color: var(--om-primary);
    display: flex; align-items: center; justify-content: center;
    transition: all var(--om-trans);
}
.om-cat__title { font-size: 1.05rem; margin: 0 0 6px; transition: color var(--om-trans); }
.om-cat__desc  { font-size: .88rem; color: var(--om-muted); margin: 0; transition: color var(--om-trans); }

/* ==========================================================
   OZELLIKLER (Why us) gridi
   ========================================================== */
.om-feature { padding: 30px; border-radius: var(--om-radius-lg); background: #fff; border: 1px solid var(--om-border); height: 100%; transition: all var(--om-trans); }
.om-feature:hover { border-color: var(--om-accent); box-shadow: var(--om-shadow-md); }
.om-feature__num { font-family: var(--om-font-heading); font-weight: 800; font-size: 38px; color: var(--om-accent); line-height: 1; margin-bottom: 14px; opacity: .85; }
.om-feature__title { font-size: 1.1rem; margin: 0 0 8px; }
.om-feature__desc  { color: var(--om-muted); font-size: .94rem; margin: 0; }

/* ==========================================================
   ISTATISTIKLER
   ========================================================== */
.om-stats { padding: 70px 0; background: var(--om-primary); color: #fff; position: relative; overflow: hidden; }
.om-stats::before {
    content: "";
    position: absolute; right: -10%; top: -50%;
    width: 600px; height: 600px;
    background: radial-gradient(closest-side, rgba(212,162,89,.10), transparent);
    pointer-events: none;
}
.om-stat { text-align: center; padding: 14px; }
.om-stat__num { font-family: var(--om-font-heading); font-weight: 800; font-size: clamp(2.4rem, 5vw, 3.6rem); color: var(--om-accent); line-height: 1; margin-bottom: 6px; }
.om-stat__label { font-size: 14px; color: rgba(255,255,255,.75); letter-spacing: .04em; text-transform: uppercase; }

/* ==========================================================
   CTA STRIP (footer ustu)
   ========================================================== */
.om-cta-strip {
    margin: 0 auto;
    margin-bottom: -60px;
    transform: translateY(60px);
    background: linear-gradient(135deg, var(--om-primary) 0%, var(--om-primary-2) 100%);
    color: #fff;
    padding: 36px 38px;
    border-radius: var(--om-radius-lg);
    box-shadow: var(--om-shadow-lg);
    max-width: 1200px;
    position: relative;
    z-index: 2;
}
.om-cta-strip h3 { color: #fff; margin: 0; }
.om-cta-strip p  { color: rgba(255,255,255,.8); }

/* ==========================================================
   FOOTER
   ========================================================== */
.om-footer {
    position: relative;
    background: linear-gradient(180deg, var(--om-bg-dark) 0%, #050d1a 100%);
    color: rgba(255,255,255,.75);
    padding: 140px 0 30px;
    overflow: hidden;
}
.om-footer::before {
    content: "";
    position: absolute;
    top: 60px; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--om-accent) 30%, var(--om-accent) 70%, transparent 100%);
    opacity: .4;
}
.om-footer::after {
    content: "";
    position: absolute;
    right: -10%; top: 30%;
    width: 500px; height: 500px;
    background: radial-gradient(closest-side, rgba(212,162,89,.12), transparent);
    pointer-events: none;
}
.om-footer__logo {
    display: inline-block;
    font-family: var(--om-font-display);
    font-weight: 300;
    font-size: 28px;
    color: #fff;
    margin-bottom: 14px;
    letter-spacing: -.02em;
    position: relative;
}
.om-footer__logo::after {
    content: "";
    position: absolute;
    left: 0; bottom: -8px;
    width: 40px; height: 2px;
    background: var(--om-accent);
}
.om-footer__tagline { color: rgba(255,255,255,.6); font-size: 14px; margin: 18px 0 22px; line-height: 1.6; }
.om-footer__title {
    color: #fff;
    font-family: var(--om-font-menu);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin: 0 0 22px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    position: relative;
}
.om-footer__title::after {
    content: "";
    position: absolute;
    left: 0; bottom: -1px;
    width: 30px; height: 1px;
    background: var(--om-accent);
}
.om-footer__nav { list-style: none; padding: 0; margin: 0; }
.om-footer__nav li { margin-bottom: 10px; }
.om-footer__nav a { color: rgba(255,255,255,.7); transition: color var(--om-trans), padding-left var(--om-trans); }
.om-footer__nav a:hover { color: var(--om-accent); padding-left: 6px; }
.om-footer__branches { list-style: none; padding: 0; margin: 0; font-size: 13.5px; }
.om-footer__branches li { margin-bottom: 16px; }
.om-footer__branches strong { display: block; color: #fff; margin-bottom: 4px; font-weight: 600; }
.om-footer__branches span { display: block; color: rgba(255,255,255,.6); margin-bottom: 4px; }
.om-footer__branches a { color: var(--om-accent); }

.om-footer__social { display: flex; gap: 10px; }
.om-footer__social a {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    color: rgba(255,255,255,.85);
    display: inline-flex; align-items: center; justify-content: center;
    transition: all var(--om-trans);
}
.om-footer__social a:hover { background: var(--om-accent); color: #fff; transform: translateY(-3px); }

.om-footer__form .uk-input { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); color: #fff; }
.om-footer__form .uk-input::placeholder { color: rgba(255,255,255,.5); }
.om-footer__form .uk-form-icon { color: rgba(255,255,255,.5); }

.om-footer__divider { border: 0; border-top: 1px solid rgba(255,255,255,.08); margin: 50px 0 22px; }
.om-footer__copyright { font-size: 13px; color: rgba(255,255,255,.55); margin: 0; }
.om-footer__legal { font-size: 13px; margin: 0; }
.om-footer__legal a { color: rgba(255,255,255,.7); margin: 0 6px; }
.om-footer__legal a:hover { color: var(--om-accent); }

/* ==========================================================
   YUZER BUTONLAR (yildizlar tarzi)
   ========================================================== */
.om-whatsapp {
    position: fixed;
    bottom: 2rem; left: 2rem;
    width: 54px; height: 54px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: grid; place-items: center;
    box-shadow: 0 10px 30px rgba(37, 211, 102, .4);
    z-index: 900;
    transition: transform var(--om-trans);
    animation: omPulse 2.4s ease-in-out infinite;
}
.om-whatsapp:hover { transform: scale(1.08); color: #fff; }
@keyframes omPulse {
    0%, 100% { box-shadow: 0 10px 30px rgba(37,211,102,.4), 0 0 0 0 rgba(37,211,102,.7); }
    50%      { box-shadow: 0 10px 30px rgba(37,211,102,.4), 0 0 0 16px rgba(37,211,102,0); }
}

.om-totop {
    position: fixed;
    bottom: 2rem; right: 2rem;
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--om-primary);
    color: #fff;
    display: grid; place-items: center;
    box-shadow: var(--om-shadow-md);
    z-index: 900;
    opacity: 0; visibility: hidden; transform: translateY(20px);
    transition: all var(--om-trans);
    border: 0; cursor: pointer;
}
.om-totop.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.om-totop:hover { background: var(--om-accent); color: #fff; transform: translateY(-4px); }

@media (max-width: 640px) {
    .om-totop { width: 42px; height: 42px; bottom: 1rem; right: 1rem; }
    .om-whatsapp { bottom: 1rem; left: 1rem; width: 48px; height: 48px; }
}

/* ==========================================================
   MOBIL ALT DOCK (yildizlar tarzi)
   ========================================================== */
.om-mobile-dock { display: none !important; }

@media (max-width: 768px) {
    html, body { overflow-x: hidden !important; max-width: 100vw !important; }
    html { background: var(--om-primary); } /* sadece mobilde dock zemini icin */
    img, video, iframe { max-width: 100%; height: auto; }
    .uk-container, .uk-container-large { padding-left: 16px; padding-right: 16px; }
    .om-hero, .om-section, .om-stats, .om-references, .om-cta-strip, .om-footer { max-width: 100vw; overflow-x: hidden; }
    .om-mega-menu, .om-megamenu { max-width: calc(100vw - 32px); }
    .om-whatsapp { display: none; } /* Mobilde WA dock icinde */

    .om-mobile-dock {
        display: block !important;
        position: fixed;
        left: 0; right: 0; bottom: 0;
        z-index: 950;
        box-shadow: 0 -6px 24px rgba(10,15,26,.12);
        transform: translateZ(0);
        will-change: transform;
        background: var(--om-primary);
    }

    /* Yesil WA destek bandi */
    .om-mobile-dock__wa {
        display: flex; align-items: center; justify-content: center; gap: .65rem;
        padding: .8rem 1rem;
        background: linear-gradient(180deg, #25D366 0%, #1eb558 100%);
        color: #fff;
        font-family: var(--om-font-menu);
        font-weight: 600; font-size: .88rem;
        letter-spacing: .02em;
        text-decoration: none;
        border-bottom: 1px solid rgba(0,0,0,.08);
    }
    .om-mobile-dock__wa:hover,
    .om-mobile-dock__wa:active { color: #fff; background: #1eb558; }

    /* 5 ikonlu menu */
    .om-mobile-dock__nav {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 0;
        background: var(--om-primary);
        border-top: 1px solid rgba(212, 162, 89, .2);
        padding: .35rem 0 max(.35rem, env(safe-area-inset-bottom));
    }
    .om-mobile-dock__nav a {
        display: flex; flex-direction: column; align-items: center; justify-content: center;
        gap: .22rem;
        padding: .55rem .3rem;
        color: #fff; text-decoration: none;
        text-align: center;
        transition: all var(--om-trans);
        min-width: 0; width: 100%;
    }
    .om-mobile-dock__nav a:hover,
    .om-mobile-dock__nav a:active,
    .om-mobile-dock__nav a:focus {
        color: var(--om-accent);
        background: rgba(212, 162, 89, .12);
    }
    .om-mobile-dock__nav a > span[uk-icon] {
        color: #fff;
        transition: color var(--om-trans);
    }
    .om-mobile-dock__nav a:hover > span[uk-icon],
    .om-mobile-dock__nav a:active > span[uk-icon] { color: var(--om-accent); }
    .om-mobile-dock__nav em {
        font-style: normal;
        font-family: var(--om-font-menu);
        font-size: .68rem; font-weight: 600;
        letter-spacing: .04em;
        color: #fff; line-height: 1.2;
        text-align: center; display: block; width: 100%;
        overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
    }

    /* Body alt padding (dock cakismasin) */
    body { padding-bottom: calc(120px + env(safe-area-inset-bottom, 0px)); }

    /* Top butonu dock'un ustune */
    .om-totop {
        bottom: calc(140px + env(safe-area-inset-bottom, 0px)) !important;
        right: 1rem !important;
        width: 40px !important; height: 40px !important;
    }

    /* Megamenu mobilde tek sutun */
    .om-megamenu__grid { grid-template-columns: 1fr; gap: 16px; }

    /* Hero mobilde 92vh */
    .om-hero { height: 92vh; min-height: 520px; }
    .om-hero__slide { padding: 100px 0 60px; padding-bottom: 8vh; }
}

/* RTL'de sirayi degistir */
[dir="rtl"] .om-whatsapp { left: auto; right: 2rem; }
[dir="rtl"] .om-totop { right: auto; left: 2rem; }
@media (max-width: 640px) {
    [dir="rtl"] .om-whatsapp { right: 1rem; }
    [dir="rtl"] .om-totop { left: 1rem; }
}

/* ==========================================================
   YARDIMCI SINIFLAR
   ========================================================== */
.om-divider { width: 60px; height: 3px; background: var(--om-accent); border: 0; margin: 0 auto 22px; border-radius: 99px; }
.om-text-accent { color: var(--om-accent); }
.om-bg-soft { background: var(--om-bg-soft); }

[data-anim] { opacity: 1; }   /* her zaman görünür - GSAP varsa fade-in animasyonla geçer */

/* ==========================================================
   BREADCRUMB
   ========================================================== */
.om-breadcrumb {
    background: var(--om-bg-soft);
    padding: 22px 0;
    border-bottom: 1px solid var(--om-border);
    font-size: 14px;
}
.om-breadcrumb ul { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.om-breadcrumb li { color: var(--om-muted); }
.om-breadcrumb li::after { content: "/"; margin-left: 8px; color: var(--om-border); }
.om-breadcrumb li:last-child::after { content: ""; }
.om-breadcrumb a { color: var(--om-text); }
.om-breadcrumb a:hover { color: var(--om-accent); }

/* ==========================================================
   FORMLAR
   ========================================================== */
.om-form .uk-input,
.om-form .uk-textarea,
.om-form .uk-select {
    border: 1px solid var(--om-border);
    border-radius: var(--om-radius);
    padding: 14px 18px;
    height: auto;
    transition: border-color var(--om-trans), box-shadow var(--om-trans);
    background: #fff;
}
.om-form .uk-input:focus,
.om-form .uk-textarea:focus,
.om-form .uk-select:focus {
    border-color: var(--om-primary);
    box-shadow: 0 0 0 4px rgba(11, 29, 51, .08);
    outline: none;
}
.om-form label { font-weight: 600; color: var(--om-primary); margin-bottom: 6px; display: block; font-size: 14px; }

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 960px) {
    .om-section { padding: 60px 0; }
    .om-hero__slide { min-height: 70vh; }
    .om-cta-strip { padding: 28px; text-align: center; }
}
@media (max-width: 640px) {
    .om-hero__slide { min-height: 60vh; text-align: center; }
    .om-hero__inner { margin: 0 auto; }
    .om-hero__cta { justify-content: center; }
    .om-cta-strip h3 { font-size: 1.2rem; }
    .om-footer { padding-top: 100px; }
}

/* ==========================================================
   REFERANS LOGO SERIDI (Kayan Marquee — yildizlar tarzi)
   ========================================================== */
.om-references {
    padding: 50px 0 60px;
    border-top: 1px solid var(--om-border);
    border-bottom: 1px solid var(--om-border);
    background: #fff;
    overflow: hidden;
}
.om-references__title {
    text-align: center;
    font-family: var(--om-font-menu);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--om-accent);
    margin: 0 0 12px;
}
.om-references__lead {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 30px;
    color: var(--om-muted);
    font-size: 15px;
    line-height: 1.7;
}

/* Marquee container - kenar fade efekti ile */
.om-marquee {
    position: relative;
    overflow: hidden;
    padding: 1rem 0;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
            mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.om-marquee__track {
    display: flex;
    gap: 56px;
    width: max-content;
    align-items: center;
    animation: omMarqueeScroll 50s linear infinite;
}
.om-marquee:hover .om-marquee__track { animation-play-state: paused; }
@keyframes omMarqueeScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.om-marquee__item {
    flex: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 64px;
    min-width: 140px;
    padding: 0 16px;
    text-decoration: none;
    transition: all var(--om-trans);
    filter: grayscale(1);
    opacity: .55;
}
.om-marquee__item:hover { filter: grayscale(0); opacity: 1; transform: translateY(-2px); }
.om-marquee__item img {
    max-height: 56px;
    max-width: 180px;
    width: auto;
    height: auto;
    object-fit: contain;
}
.om-marquee__text {
    font-family: var(--om-font-menu);
    font-weight: 700;
    font-size: 20px;
    color: var(--om-muted);
    letter-spacing: .02em;
    white-space: nowrap;
}
.om-marquee__item:hover .om-marquee__text { color: var(--om-primary); }

@media (max-width: 640px) {
    .om-marquee__track { gap: 32px; animation-duration: 36s; }
    .om-marquee__item { height: 48px; min-width: 100px; }
    .om-marquee__item img { max-height: 40px; max-width: 120px; }
    .om-marquee__text { font-size: 16px; }
}
@media (prefers-reduced-motion: reduce) {
    .om-marquee__track { animation: none; }
}

/* ==========================================================
   MUSTERI YORUMLARI (Testimonials)
   ========================================================== */
.om-testimonial {
    background: #fff;
    border: 1px solid var(--om-border);
    border-radius: var(--om-radius-lg);
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all var(--om-trans);
    position: relative;
}
.om-testimonial::before {
    content: "\201C";
    position: absolute;
    top: 14px; right: 22px;
    font-family: Georgia, serif;
    font-size: 90px;
    color: var(--om-accent);
    line-height: 1;
    opacity: .18;
}
.om-testimonial:hover { box-shadow: var(--om-shadow-md); transform: translateY(-4px); border-color: transparent; }
.om-testimonial__rating { color: var(--om-accent); margin-bottom: 14px; letter-spacing: 2px; }
.om-testimonial__text {
    font-size: 15px; color: var(--om-text); line-height: 1.7;
    margin: 0 0 22px; flex: 1;
}
.om-testimonial__author { display: flex; align-items: center; gap: 12px; }
.om-testimonial__avatar {
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--om-bg-soft) center/cover;
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    color: var(--om-primary); font-weight: 700; font-family: var(--om-font-heading); font-size: 17px;
}
.om-testimonial__avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.om-testimonial__info strong { display: block; color: var(--om-primary); font-family: var(--om-font-heading); font-weight: 700; font-size: 14.5px; }
.om-testimonial__info span { display: block; font-size: 12px; color: var(--om-muted); }

/* ==========================================================
   SSS (FAQ) AKKORDIYON
   ========================================================== */
.om-faq { max-width: 880px; margin: 0 auto; }
.om-faq__item {
    background: #fff;
    border: 1px solid var(--om-border);
    border-radius: var(--om-radius);
    margin-bottom: 12px;
    overflow: hidden;
    transition: all var(--om-trans);
}
.om-faq__item:hover { border-color: var(--om-accent); }
.om-faq__item.uk-open { border-color: var(--om-accent); box-shadow: var(--om-shadow-sm); }
.om-faq__title {
    padding: 18px 22px !important;
    font-family: var(--om-font-heading);
    font-weight: 600;
    font-size: 16px;
    color: var(--om-primary);
    margin: 0;
    cursor: pointer;
    display: flex; align-items: center; justify-content: space-between; gap: 14px;
}
.om-faq__title::before { content: "?"; flex: 0 0 32px; width: 32px; height: 32px; border-radius: 50%; background: var(--om-bg-soft); color: var(--om-accent); display: inline-flex; align-items: center; justify-content: center; font-weight: 800; }
.om-faq__item.uk-open .om-faq__title::before { background: var(--om-accent); color: #fff; }
.om-faq__content { padding: 0 22px 22px 70px !important; color: var(--om-muted); line-height: 1.7; }

/* ==========================================================
   BLOG KARTLARI
   ========================================================== */
.om-blog-card {
    background: #fff;
    border-radius: var(--om-radius-lg);
    overflow: hidden;
    border: 1px solid var(--om-border);
    height: 100%;
    transition: all var(--om-trans);
    display: flex; flex-direction: column;
}
.om-blog-card:hover { box-shadow: var(--om-shadow-lg); transform: translateY(-4px); border-color: transparent; }
.om-blog-card__media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--om-bg-soft); }
.om-blog-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s; }
.om-blog-card:hover .om-blog-card__media img { transform: scale(1.05); }
.om-blog-card__body { padding: 22px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.om-blog-card__meta { font-size: 12px; color: var(--om-muted); display: flex; gap: 10px; margin-bottom: 10px; align-items: center; }
.om-blog-card__cat { color: var(--om-accent); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.om-blog-card__title { font-size: 1.15rem; margin: 0 0 12px; line-height: 1.35; }
.om-blog-card__title a { color: var(--om-primary); }
.om-blog-card__title a:hover { color: var(--om-accent); }
.om-blog-card__excerpt { color: var(--om-muted); font-size: .94rem; margin: 0 0 16px; flex: 1; }
.om-blog-card__more { font-weight: 600; color: var(--om-primary); display: inline-flex; align-items: center; gap: 6px; }
.om-blog-card__more:hover { color: var(--om-accent); }

/* ==========================================================
   PROJE KARTLARI
   ========================================================== */
.om-project {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: var(--om-radius-lg);
    overflow: hidden;
    background: var(--om-bg-dark);
    display: block;
    color: #fff;
}
.om-project__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1s; }
.om-project:hover .om-project__img { transform: scale(1.06); }
.om-project::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.85) 100%);
    transition: background .3s;
}
.om-project__body { position: absolute; left: 0; right: 0; bottom: 0; padding: 24px; z-index: 2; }
.om-project__tag { display: inline-block; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; padding: 4px 10px; background: rgba(255,255,255,.18); border-radius: 999px; margin-bottom: 10px; backdrop-filter: blur(6px); }
.om-project__title { color: #fff; font-size: 1.25rem; margin: 0 0 4px; }
.om-project__meta { color: rgba(255,255,255,.7); font-size: 13px; }

/* ==========================================================
   GALERI GRID
   ========================================================== */
.om-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.om-gallery__item { aspect-ratio: 1 / 1; border-radius: var(--om-radius); overflow: hidden; background: var(--om-bg-soft); position: relative; cursor: zoom-in; }
.om-gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.om-gallery__item:hover img { transform: scale(1.08); }
.om-gallery__item--wide { grid-column: span 2; }
.om-gallery__item--tall { grid-row: span 2; }
@media (max-width: 960px) { .om-gallery { grid-template-columns: repeat(3, 1fr); } .om-gallery__item--wide, .om-gallery__item--tall { grid-column: auto; grid-row: auto; } }
@media (max-width: 640px) { .om-gallery { grid-template-columns: repeat(2, 1fr); gap: 8px; } }

/* ==========================================================
   IS ILANI KARTI
   ========================================================== */
.om-job {
    background: #fff;
    border: 1px solid var(--om-border);
    border-radius: var(--om-radius-lg);
    padding: 26px 28px;
    margin-bottom: 14px;
    display: flex; align-items: center; gap: 24px;
    transition: all var(--om-trans);
}
.om-job:hover { border-color: var(--om-accent); box-shadow: var(--om-shadow-sm); }
.om-job__main { flex: 1; }
.om-job__title { margin: 0 0 6px; font-size: 1.1rem; }
.om-job__meta { font-size: 13px; color: var(--om-muted); display: flex; gap: 18px; flex-wrap: wrap; }
.om-job__meta span { display: inline-flex; align-items: center; gap: 4px; }

/* ==========================================================
   ============================================================
   ARAPÇA / RTL DESTEĞİ (kapsamlı)
   ============================================================
   ========================================================== */

/* Font: Arapça için Tajawal/Cairo Google fonts daha iyi okunur */
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;700;800&family=Cairo:wght@300;400;500;600;700&display=swap');

[dir="rtl"] {
    --om-font-body:    'Tajawal', 'Cairo', 'Inter', sans-serif;
    --om-font-heading: 'Tajawal', 'Cairo', 'Inter', sans-serif;
    --om-font-menu:    'Cairo', 'Tajawal', 'Inter', sans-serif;
    --om-font-display: 'Tajawal', 'Cairo', 'Inter', sans-serif;
    --om-font-sans:    'Tajawal', 'Cairo', 'Inter', sans-serif;
}
[dir="rtl"] body { font-family: 'Tajawal', 'Cairo', 'Inter', sans-serif; }

/* h1-h6 — Arapça'da letter-spacing -.025em fena görünür */
[dir="rtl"] h1, [dir="rtl"] h2, [dir="rtl"] h3, [dir="rtl"] h4, [dir="rtl"] h5, [dir="rtl"] h6 {
    letter-spacing: 0;
    font-weight: 500;
}
[dir="rtl"] h1 { font-weight: 700; }
[dir="rtl"] h2 { font-weight: 600; }

/* HEADER — RTL'de navbar yön çevirisi */
[dir="rtl"] .uk-navbar { direction: rtl; }
[dir="rtl"] .uk-navbar-left { float: right; }
[dir="rtl"] .uk-navbar-right { float: left; }
[dir="rtl"] .uk-navbar-center {
    left: auto; right: 50%;
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
}
[dir="rtl"] .om-nav { margin-left: 0; margin-right: 3rem; }
@media (max-width: 1199px) { [dir="rtl"] .om-nav { margin-right: 1.5rem; } }
[dir="rtl"] .om-nav > li > a { letter-spacing: 0; font-weight: 500; }

/* RTL'de sağ taraftaki ögeler (lang/arama/CTA) sola geçer
   uk-navbar-right + direction:rtl → öğeler ters sırayla yerleşir */
[dir="rtl"] .uk-navbar-right > * { order: 0; }
[dir="rtl"] .om-iconbtn { margin-right: 0; margin-left: 6px; }
[dir="rtl"] .om-lang-switch { margin: 0 14px; flex-direction: row-reverse; }

/* HERO */
[dir="rtl"] .om-hero__content { text-align: right; }
[dir="rtl"] .om-hero__eyebrow { padding-left: 0; padding-right: 50px; letter-spacing: .15em; }
[dir="rtl"] .om-hero__eyebrow::before { left: auto; right: 0; }
[dir="rtl"] .om-hero__title { letter-spacing: 0; font-weight: 700; }
[dir="rtl"] .om-hero__counter { right: auto; left: max(24px, 5vw); }
[dir="rtl"] .om-hero__scroll { font-family: var(--om-font-menu); }

/* OK İKONLARI — RTL'de ters yönde (sola dönmeli) */
[dir="rtl"] .om-card__more span[uk-icon="arrow-right"],
[dir="rtl"] .om-blog-card__more span[uk-icon="arrow-right"],
[dir="rtl"] .om-btn span[uk-icon="arrow-right"],
[dir="rtl"] .om-megamenu__cta a span[uk-icon="arrow-right"],
[dir="rtl"] .om-cta__actions span[uk-icon="arrow-right"] { transform: scaleX(-1); }

/* SECTION KICKER — yan altın çizgiler */
[dir="rtl"] .om-section__head { text-align: center; }

/* MEGA MENÜ */
[dir="rtl"] .om-megamenu { text-align: right; }
[dir="rtl"] .om-megamenu__head { flex-direction: row-reverse; justify-content: flex-end; }
[dir="rtl"] .om-megamenu__list a { padding: 6px 8px; }
[dir="rtl"] .om-megamenu__list a:hover { padding-left: 8px; padding-right: 16px; }
[dir="rtl"] .om-megamenu__cta { text-align: left; }

/* ARAMA MODAL */
[dir="rtl"] .om-search-modal__input { padding-left: 18px; padding-right: 50px; text-align: right; }
[dir="rtl"] .om-search-modal .uk-form-icon { left: auto; right: 14px; }
[dir="rtl"] .om-search-suggestion { flex-direction: row-reverse; text-align: right; }

/* OFFCANVAS — UIkit varsayılan offcanvas-flip RTL'de zaten sağdan açılır,
   yine de close butonu ve nav metinleri sağ hizalı */
[dir="rtl"] .om-offcanvas__nav li a { text-align: right; }
[dir="rtl"] .om-offcanvas__nav li a:hover { padding-left: 0 !important; padding-right: 6px !important; }
[dir="rtl"] .om-offcanvas__cta a { flex-direction: row-reverse; }

/* REFERANSLAR / MARQUEE — animasyon yönü RTL'de ters */
[dir="rtl"] .om-marquee__track {
    animation: omMarqueeScrollRtl 50s linear infinite;
}
@keyframes omMarqueeScrollRtl {
    0%   { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}
[dir="rtl"] .om-references__title { letter-spacing: .15em; }

/* TESTIMONIAL — alıntı işareti sağda yerine solda */
[dir="rtl"] .om-testimonial::before { right: auto; left: 22px; content: "\201D"; }
[dir="rtl"] .om-testimonial__author { flex-direction: row-reverse; }
[dir="rtl"] .om-testimonial__info { text-align: right; }

/* FAQ */
[dir="rtl"] .om-faq__title { flex-direction: row-reverse; text-align: right; }
[dir="rtl"] .om-faq__title::before { content: "؟"; }
[dir="rtl"] .om-faq__content { padding: 0 70px 22px 22px !important; }

/* ÜRÜN/PROJE KARTLARI */
[dir="rtl"] .om-card__cat,
[dir="rtl"] .om-card__title,
[dir="rtl"] .om-card__desc,
[dir="rtl"] .om-card__more,
[dir="rtl"] .om-blog-card__meta,
[dir="rtl"] .om-blog-card__title,
[dir="rtl"] .om-blog-card__excerpt,
[dir="rtl"] .om-blog-card__more { text-align: right; }
[dir="rtl"] .om-card__more,
[dir="rtl"] .om-blog-card__more { flex-direction: row-reverse; justify-content: flex-end; }
[dir="rtl"] .om-card__badge { left: auto; right: 14px; }

/* PROJE KARTI alt taraf */
[dir="rtl"] .om-project__body { text-align: right; }

/* ÖZELLİK KARTLARI */
[dir="rtl"] .om-feature { text-align: right; }
[dir="rtl"] .om-feature.uk-text-center { text-align: center; }

/* İSTATİSTİK */
[dir="rtl"] .om-stats { direction: rtl; }
[dir="rtl"] .om-stat { text-align: center; }

/* CTA STRIP/CTA */
[dir="rtl"] .om-cta__grid { grid-template-columns: 1fr 1.5fr; }
@media (max-width: 768px) { [dir="rtl"] .om-cta__grid { grid-template-columns: 1fr; text-align: center; } }
[dir="rtl"] .om-cta__actions { justify-content: flex-start; }
@media (max-width: 768px) { [dir="rtl"] .om-cta__actions { justify-content: center; } }
[dir="rtl"] .om-cta__title,
[dir="rtl"] .om-cta__text { text-align: right; }

/* FOOTER */
[dir="rtl"] .om-footer__heading { text-align: right; }
[dir="rtl"] .om-footer__heading::after { left: auto; right: 0; }
[dir="rtl"] .om-footer__links a:hover { padding-left: 0; padding-right: .35rem; }
[dir="rtl"] .om-footer__contact li { flex-direction: row-reverse; text-align: right; }
[dir="rtl"] .om-footer__bottom { direction: rtl; text-align: right; }
[dir="rtl"] .om-footer__logo { text-align: right; }

/* İLETİŞİM */
[dir="rtl"] .om-contact-card { text-align: right; }
[dir="rtl"] .om-contact-card__title::after { left: auto; right: 0; }
[dir="rtl"] .om-contact-item { flex-direction: row-reverse; text-align: right; }
[dir="rtl"] .om-form__label { text-align: right; }
[dir="rtl"] .uk-input,
[dir="rtl"] .uk-textarea { text-align: right; }
[dir="rtl"] .uk-input::placeholder,
[dir="rtl"] .uk-textarea::placeholder { text-align: right; }

/* BREADCRUMB */
[dir="rtl"] .om-breadcrumb ul { flex-direction: row-reverse; }
[dir="rtl"] .om-breadcrumb li::after { content: "/"; margin-left: 0; margin-right: 8px; }

/* WHATSAPP / TOTOP — RTL'de yer değiştir */
[dir="rtl"] .om-whatsapp { left: auto; right: 2rem; }
[dir="rtl"] .om-totop { right: auto; left: 2rem; }
@media (max-width: 640px) {
    [dir="rtl"] .om-whatsapp { right: 1rem; }
    [dir="rtl"] .om-totop { left: 1rem; }
}

/* MOBİL DOCK — Arapça nav öğeleri sağdan sola */
[dir="rtl"] .om-mobile-dock__nav { direction: rtl; }
[dir="rtl"] .om-mobile-dock__wa { flex-direction: row-reverse; }

/* ANASAYFA "NEDEN BİZ" feature-num — RTL'de sayı sağa */
[dir="rtl"] .om-feature__num { text-align: right; }

/* SLIDER NAVIGATION OKLAR */
[dir="rtl"] .om-hero__shell .uk-position-center-left { left: auto; right: 0; }
[dir="rtl"] .om-hero__shell .uk-position-center-right { right: auto; left: 0; }
[dir="rtl"] .om-hero__shell [uk-slidenav-previous] { transform: scaleX(-1); }
[dir="rtl"] .om-hero__shell [uk-slidenav-next] { transform: scaleX(-1); }

/* Slider sliders/yorumlar/blog için sol-sağ navigasyon */
[dir="rtl"] [uk-slidenav-previous],
[dir="rtl"] [uk-slidenav-next] { transform: scaleX(-1); }

/* UIkit GRID — uk-flex-between vs RTL otomatik dönüşür ama zorla doğrula */
[dir="rtl"] .uk-grid > * { direction: rtl; }

/* FORM INPUT TEL/EMAIL — sayılar her zaman LTR yönlendirilmeli */
[dir="rtl"] input[type="email"],
[dir="rtl"] input[type="tel"],
[dir="rtl"] input[type="url"],
[dir="rtl"] input[type="number"] {
    direction: ltr;
    text-align: right;
}
[dir="rtl"] a[href^="tel:"],
[dir="rtl"] a[href^="mailto:"] { direction: ltr; display: inline-block; unicode-bidi: embed; }

/* ==========================================================
   ============================================================
   YILDIZLAR HEADER BIREBIR (cascade ile override)
   ============================================================
   ========================================================== */
.om-header-wrap { position: sticky; top: 0; left: 0; right: 0; z-index: 980; transition: background var(--om-trans); }
.om-header { position: relative; z-index: 980; background: #fff; border-bottom: 1px solid var(--om-border) !important; }

/* Anasayfa: seffaf header + hero ustunde */
body.is-home .om-header-wrap { position: absolute; top: 0; left: 0; right: 0; z-index: 110; }

/* Anasayfa scroll + beyaz */
body.is-home.is-scrolled .om-header-wrap {
    position: fixed; top: 0; left: 0; right: 0; z-index: 980;
    animation: omSlideDown .35s ease-out;
}
@keyframes omSlideDown { from { transform: translateY(-100%); } to { transform: translateY(0); } }

body.is-home.is-scrolled .om-header {
    background: rgba(255,255,255,.97) !important;
    backdrop-filter: saturate(1.2) blur(12px);
    border-bottom: 1px solid var(--om-border) !important;
    box-shadow: 0 2px 18px rgba(11,29,51,.08);
}
body:not(.is-home) .om-header { box-shadow: 0 1px 0 var(--om-border); }
body:not(.is-home).is-scrolled .om-header { box-shadow: 0 4px 18px rgba(11,29,51,.08); }
body.is-home.is-scrolled .om-header .om-nav > li > a { color: var(--om-text) !important; }
body.is-home.is-scrolled .om-header .om-iconbtn { color: var(--om-text); }
body.is-home.is-scrolled .om-header .om-logo__text strong { color: var(--om-primary); }
body.is-home.is-scrolled .om-header .om-logo__text small { color: var(--om-muted); }
body.is-home.is-scrolled .om-header .om-btn--primary { background: var(--om-primary); color: #fff; }
body.is-home.is-scrolled .om-header .om-btn--primary:hover { background: var(--om-primary-2); }

body.is-home .om-header { background: transparent; border-bottom: 1px solid rgba(255,255,255,.18) !important; }
body.is-home .om-header .om-nav > li > a { color: #fff !important; }
body.is-home .om-header .om-nav > li:hover > a,
body.is-home .om-header .om-nav > li.uk-active > a { color: var(--om-accent) !important; }
body.is-home .om-header .om-nav > li > a::after { background: var(--om-accent); }
body.is-home .om-header .om-iconbtn { color: #fff; }
body.is-home .om-header .om-iconbtn:hover { background: rgba(255,255,255,.1); color: #fff; }
body.is-home .om-header .om-logo__text strong { color: #fff; }
body.is-home .om-header .om-logo__text small { color: rgba(255,255,255,.65); }
body.is-home .om-header .om-btn--primary { background: var(--om-accent); color: #fff; }
body.is-home .om-header .om-btn--primary:hover { background: var(--om-accent-2); color: #fff; box-shadow: 0 8px 24px rgba(212,162,89,.35); }
body.is-home.is-scrolled .om-header { background: rgba(255,255,255,.96); border-bottom: 1px solid var(--om-border); }

.om-header__inner { transition: padding var(--om-trans), box-shadow var(--om-trans), background var(--om-trans); }
.om-header__inner .uk-navbar { min-height: 68px !important; padding: 0; }

/* LOGO */
.om-logo { display: inline-flex; align-items: center; gap: .75rem; text-decoration: none; }
.om-logo__img { height: 38px; width: auto; flex: none; transition: transform var(--om-trans); border-radius: 6px; }
.om-logo:hover .om-logo__img { transform: rotate(-6deg) scale(1.04); }
.om-logo__text { display: flex; flex-direction: column; line-height: 1; }
.om-logo__text strong { font-family: var(--om-font-menu); font-weight: 700; font-size: 1rem; color: var(--om-text); letter-spacing: .01em; line-height: 1.15; }
.om-logo__text small { font-family: var(--om-font-menu); font-size: .62rem; font-weight: 600; color: var(--om-muted); margin-top: .15rem; text-transform: uppercase; letter-spacing: .2em; }

/* ANA NAV */
.om-nav { margin-left: 3rem; }
@media (max-width: 1199px) { .om-nav { margin-left: 1.5rem; } }
.om-nav > li > a {
    position: relative;
    font-family: var(--om-font-menu);
    font-weight: 500; font-size: 14px;
    color: var(--om-text) !important;
    padding: 0 .75rem !important;
    text-transform: none; letter-spacing: .04em;
    min-height: 68px; white-space: nowrap;
    transition: color var(--om-trans);
}
.om-nav > li.uk-active > a { font-weight: 700; }
.om-nav > li > a::after {
    content: ""; position: absolute;
    left: .75rem; right: .75rem; bottom: 18px;
    height: 2px; background: var(--om-accent);
    transform: scaleX(0); transform-origin: center;
    transition: transform var(--om-trans);
}
.om-nav > li:hover > a,
.om-nav > li.uk-active > a { color: var(--om-primary) !important; }
.om-nav > li:hover > a::after,
.om-nav > li.uk-active > a::after { transform: scaleX(1); }

/* MEGA MENU (4 sutun, container-max genisliginde) */
.uk-navbar-dropdown.om-megamenu { display: none; }
.uk-navbar-dropdown.om-megamenu.uk-open { display: block; }
.uk-navbar-dropdown.om-megamenu {
    width: min(var(--container-max), calc(100vw - 40px)) !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    margin-top: 8px !important;
    padding: 36px 44px 28px !important;
    border-radius: 16px !important;
    border: 1px solid var(--om-border) !important;
    box-shadow: 0 30px 80px rgba(11,29,51,.18) !important;
    background: #fff !important;
    box-sizing: border-box;
}

/* IKON BUTON */
.om-iconbtn {
    display: inline-grid; place-items: center;
    width: 38px; height: 38px;
    border-radius: 8px;
    color: var(--om-text);
    transition: background var(--om-trans), color var(--om-trans);
}
.om-iconbtn:hover { background: var(--om-bg-soft); color: var(--om-primary); }

/* BUTONLAR (yildizlar) */
.om-btn {
    display: inline-flex; align-items: center; gap: .55rem;
    font-family: var(--om-font-menu);
    font-weight: 600; font-size: .85rem;
    padding: .7rem 1.3rem;
    height: auto; line-height: 1;
    border-radius: 999px;
    border: 1px solid transparent;
    letter-spacing: .03em; text-transform: none;
    transition: all var(--om-trans);
}
.om-btn--primary { background: var(--om-primary); color: #fff; }
.om-btn--primary:hover { background: var(--om-primary-2); color: #fff; transform: translateY(-2px); box-shadow: var(--om-shadow-md); }
.om-btn--accent { background: var(--om-accent); color: #fff; }
.om-btn--accent:hover { background: var(--om-accent-2); color: #fff; transform: translateY(-2px); box-shadow: var(--om-shadow-md); }
.om-btn--ghost { background: transparent; color: var(--om-text); border-color: var(--om-border); }
.om-btn--ghost:hover { background: var(--om-bg-soft); color: var(--om-primary); }

/* DIL SECICI */
.om-lang-switch { display: inline-flex; align-items: center; margin: 0 .5rem; gap: .25rem; }
.om-lang-switch a { padding: 4px 6px; font-family: var(--om-font-menu); font-weight: 700; font-size: 12px; color: var(--om-muted); letter-spacing: .04em; }
.om-lang-switch a.is-active { color: var(--om-accent); }
body.is-home .om-lang-switch a { color: rgba(255,255,255,.7); }
body.is-home .om-lang-switch a.is-active { color: var(--om-accent); }
body.is-home.is-scrolled .om-lang-switch a { color: var(--om-muted); }
body.is-home.is-scrolled .om-lang-switch a.is-active { color: var(--om-accent); }

/* ==========================================================
   ============================================================
   CTA SERIDI + FOOTER (yildizlar birebir, .om- prefix)
   ============================================================
   ========================================================== */
.om-cta {
    background:
        radial-gradient(circle at 80% 20%, rgba(212,162,89,.25), transparent 45%),
        linear-gradient(135deg, #0e2445 0%, #081528 100%);
    color: #fff;
    padding: clamp(3rem, 6vw, 5rem) 0;
    position: relative;
    overflow: hidden;
}
.om-cta::before {
    content: ""; position: absolute; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cpath d='M0 0h1v1H0z' fill='%23d4a259' fill-opacity='.04'/%3E%3C/svg%3E");
}
.om-cta__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2.5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}
@media (max-width: 768px) {
    .om-cta__grid { grid-template-columns: 1fr; text-align: center; }
}
.om-cta__title {
    font-family: var(--om-font-display);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 200;
    color: #fff;
    margin: 0 0 .8rem;
    letter-spacing: -.025em;
    line-height: 1.15;
}
.om-cta__title em { font-style: normal; color: var(--om-accent); font-weight: 300; }
.om-cta__text {
    color: rgba(255,255,255,.7);
    font-weight: 300;
    margin: 0;
    max-width: 52ch;
    line-height: 1.7;
}
.om-cta__actions {
    display: flex; flex-wrap: wrap; gap: .8rem;
    justify-content: flex-end;
}
@media (max-width: 768px) { .om-cta__actions { justify-content: center; } }
.om-btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.3); }
.om-btn--outline-light:hover { background: #fff; color: var(--om-primary); border-color: #fff; }

/* Eski .om-cta-strip override */
.om-cta-strip { display: none; }

/* FOOTER */
.om-footer {
    background: #070c17;
    color: rgba(255,255,255,.7);
    padding: clamp(3rem, 8vw, 5rem) 0 1.5rem;
    font-size: .92rem;
    position: relative;
}
.om-footer::before, .om-footer::after { display: none; }
.om-footer__top { margin-bottom: 3rem; }

.om-footer__logo {
    display: inline-block;
    font-family: var(--om-font-display);
    font-weight: 300;
    font-size: 28px;
    color: #fff;
    margin-bottom: 0;
    letter-spacing: -.02em;
    position: relative;
}
.om-footer__logo::after { display: none; }

.om-footer__heading {
    font-family: var(--om-font-menu);
    font-size: .82rem;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .18em;
    margin: 1.25rem 0 1.25rem;
    position: relative;
    padding-bottom: .75rem;
    border-bottom: none;
}
.om-footer__heading::after {
    content: "";
    position: absolute;
    bottom: 0; left: 0;
    width: 28px; height: 2px;
    background: var(--om-accent);
}

.om-footer__desc {
    color: rgba(255,255,255,.55);
    margin: 1.25rem 0 1.5rem;
    font-size: .9rem;
    line-height: 1.7;
}

.om-footer__links, .om-footer__contact {
    list-style: none;
    padding: 0;
    margin: 0;
    font-family: var(--om-font-menu);
}
.om-footer__links li { margin-bottom: .65rem; }
.om-footer__links a {
    color: rgba(255,255,255,.62);
    transition: color var(--om-trans), padding-left var(--om-trans);
}
.om-footer__links a:hover { color: var(--om-accent); padding-left: .35rem; }

.om-footer__contact li {
    display: flex;
    gap: .75rem;
    align-items: flex-start;
    margin-bottom: 1rem;
    color: rgba(255,255,255,.65);
}
.om-footer__contact li > span:first-child {
    color: var(--om-accent);
    flex: none;
    margin-top: .15rem;
}
.om-footer__contact a { color: rgba(255,255,255,.85); }
.om-footer__contact a:hover { color: var(--om-accent); }

.om-footer__socials {
    display: flex;
    gap: .5rem;
    margin-top: 1.25rem;
}
.om-footer__socials a {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,.06);
    color: rgba(255,255,255,.85);
    display: grid;
    place-items: center;
    transition: all var(--om-trans);
}
.om-footer__socials a:hover {
    background: var(--om-accent);
    color: #fff;
    transform: translateY(-3px);
}

.om-footer__bottom {
    border-top: 1px solid rgba(255,255,255,.06);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    color: rgba(255,255,255,.45);
    font-size: .82rem;
    text-align: center;
}
.om-footer__bottom a { color: rgba(255,255,255,.55); }
.om-footer__bottom a:hover { color: var(--om-accent); }
.om-sep { margin: 0 .6rem; opacity: .4; }

@media (max-width: 640px) {
    .om-footer__bottom { flex-direction: column; gap: .5rem; }
    .om-footer__top { margin-bottom: 1.5rem; }
}

/* ==========================================================
   SAYFA HERO (urunler/blog/projeler vb. ust banner)
   ========================================================== */
.om-page-hero {
    background: linear-gradient(135deg, var(--om-primary) 0%, var(--om-primary-2) 100%);
    color: #fff;
    padding: 80px 0 60px;
    margin-top: -78px;
    padding-top: 158px;
    position: relative;
    overflow: hidden;
}
.om-page-hero::before {
    content: "";
    position: absolute;
    right: -10%; top: 20%;
    width: 480px; height: 480px;
    background: radial-gradient(closest-side, rgba(212,162,89,.18), transparent);
    pointer-events: none;
}
.om-page-hero__crumb {
    display: flex; align-items: center; gap: 8px;
    font-family: var(--om-font-menu);
    font-size: 13px; font-weight: 500;
    color: rgba(255,255,255,.65);
    margin-bottom: 18px;
    letter-spacing: .04em;
}
.om-page-hero__crumb a { color: rgba(255,255,255,.85); transition: color var(--om-trans); }
.om-page-hero__crumb a:hover { color: var(--om-accent); }
.om-page-hero__crumb span[uk-icon] { color: rgba(255,255,255,.4); }
.om-page-hero__title {
    font-family: var(--om-font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 200;
    color: #fff;
    margin: 0 0 14px;
    letter-spacing: -.02em;
    line-height: 1.1;
}
.om-page-hero__title em { font-style: normal; color: var(--om-accent); font-weight: 300; }
.om-page-hero__lead {
    color: rgba(255,255,255,.7);
    font-size: 15px;
    margin: 0;
    max-width: 720px;
    line-height: 1.7;
}

/* ==========================================================
   URUNLER SAYFASI - LAYOUT
   ========================================================== */
.om-products-section { padding-top: 50px; }
.om-products-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 36px;
    align-items: start;
}
@media (max-width: 960px) {
    .om-products-layout { grid-template-columns: 1fr; }
}

/* SIDEBAR */
.om-products-sidebar { position: relative; }
.om-products-sidebar__inner {
    background: #fff;
    border: 1px solid var(--om-border);
    border-radius: var(--om-radius-lg);
    padding: 26px 22px;
    position: sticky;
    top: 100px;
}
.om-products-sidebar__title {
    font-family: var(--om-font-menu);
    font-size: 12px;
    font-weight: 700;
    color: var(--om-primary);
    text-transform: uppercase;
    letter-spacing: .14em;
    margin: 0 0 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--om-border);
    position: relative;
}
.om-products-sidebar__title::after {
    content: ""; position: absolute; left: 0; bottom: -1px;
    width: 24px; height: 2px; background: var(--om-accent);
}
.om-products-sidebar .uk-input { border-radius: 8px; }
.om-products-sidebar__cta {
    margin-top: 28px; padding: 20px;
    background: linear-gradient(155deg, var(--om-primary) 0%, var(--om-primary-2) 100%);
    color: #fff; border-radius: var(--om-radius);
}
.om-products-sidebar__cta h5 {
    font-family: var(--om-font-display); font-weight: 400;
    color: #fff; margin: 0 0 6px; font-size: 1rem;
}
.om-products-sidebar__cta p { color: rgba(255,255,255,.7); font-size: 13px; margin: 0 0 14px; line-height: 1.5; }

/* Mobil offcanvas davranışı */
@media (max-width: 960px) {
    .om-products-sidebar {
        position: fixed; inset: 0;
        z-index: 1010;
        background: rgba(11,29,51,.5);
        opacity: 0; visibility: hidden;
        transition: opacity .3s, visibility .3s;
    }
    .om-products-sidebar.is-open { opacity: 1; visibility: visible; }
    .om-products-sidebar__inner {
        position: fixed; left: 0; top: 0; bottom: 0;
        width: 88%; max-width: 340px;
        border-radius: 0;
        overflow-y: auto;
        transform: translateX(-100%);
        transition: transform .3s;
        padding-top: 60px;
    }
    .om-products-sidebar.is-open .om-products-sidebar__inner { transform: translateX(0); }
}

/* KATEGORİ AĞACI */
.om-cat-tree { list-style: none; padding: 0; margin: 0; }
.om-cat-tree > li { margin-bottom: 4px; }
.om-cat-tree__all,
.om-cat-tree__head {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 12px;
    border-radius: 8px;
    font-family: var(--om-font-menu);
    font-weight: 500;
    font-size: 14px;
    color: var(--om-text);
    transition: all var(--om-trans);
    cursor: pointer;
}
.om-cat-tree__all:hover,
.om-cat-tree__head:hover { background: var(--om-bg-soft); color: var(--om-primary); }
.om-cat-tree__head.is-active { background: var(--om-primary); color: #fff; }
.om-cat-tree__head.is-active .om-cat-tree__icon { color: var(--om-accent); }
.om-cat-tree__head.is-active .om-cat-tree__count { background: var(--om-accent); color: #fff; }
.om-cat-tree__active-all .om-cat-tree__all { background: var(--om-accent); color: #fff; }
.om-cat-tree__icon { color: var(--om-accent); display: inline-flex; }
.om-cat-tree__icon svg { width: 18px; height: 18px; }
.om-cat-tree__head > span:nth-child(2) { flex: 1; }
.om-cat-tree__count {
    font-size: 11px; font-weight: 700;
    background: var(--om-bg-soft);
    color: var(--om-muted);
    padding: 2px 8px;
    border-radius: 999px;
    min-width: 22px;
    text-align: center;
}
.om-cat-tree__body { padding: 6px 0 6px 30px !important; border-left: 1px dashed var(--om-border); margin-left: 18px; }
.om-cat-tree__link {
    display: block;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 13px;
    color: var(--om-muted);
    transition: all var(--om-trans);
}
.om-cat-tree__link:hover { background: var(--om-bg-soft); color: var(--om-primary); padding-left: 14px; }
.om-cat-tree__link.is-active { color: var(--om-accent); font-weight: 600; }
.om-cat-tree__link strong { color: var(--om-primary); }

.uk-accordion-title::before,
.om-cat-tree .uk-accordion-title::before {
    margin-left: auto;
    transition: transform var(--om-trans);
}

/* TOOLBAR */
.om-products-toolbar {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    background: #fff;
    border: 1px solid var(--om-border);
    border-radius: var(--om-radius);
    padding: 14px 18px;
    margin-bottom: 28px;
}
.om-products-toolbar__count {
    font-size: 14px; color: var(--om-muted);
    flex: 1;
}
.om-products-toolbar__count strong { color: var(--om-primary); font-size: 16px; font-family: var(--om-font-menu); margin-right: 4px; }
.om-products-toolbar__clear {
    margin-left: 14px;
    color: var(--om-accent);
    font-size: 12px;
    font-weight: 600;
}
.om-products-toolbar__clear:hover { color: var(--om-primary); }
.om-products-toolbar__sort { display: flex; align-items: center; gap: 8px; }
.om-products-toolbar__sort label {
    font-family: var(--om-font-menu);
    font-size: 13px;
    font-weight: 600;
    color: var(--om-muted);
    margin: 0;
}
.om-products-toolbar__sort .uk-select {
    width: 180px;
    height: 38px;
    padding: 0 12px;
    font-size: 13px;
    border-radius: 8px;
}
.om-products-toolbar__filterbtn { background: var(--om-primary); color: #fff; border: 0; }
.om-products-toolbar__filterbtn:hover { background: var(--om-primary-2); color: #fff; }

/* EMPTY STATE */
.om-products-empty {
    text-align: center;
    padding: 80px 30px;
    background: #fff;
    border: 2px dashed var(--om-border);
    border-radius: var(--om-radius-lg);
    color: var(--om-muted);
}
.om-products-empty span[uk-icon] { color: var(--om-accent); opacity: .5; margin-bottom: 18px; display: inline-block; }
.om-products-empty h3 { color: var(--om-primary); margin: 0 0 8px; }
.om-products-empty p { margin: 0 0 22px; max-width: 420px; margin: 0 auto 22px; }

/* PAGINATION */
.om-pagination li > a,
.om-pagination li > span {
    width: 40px; height: 40px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 8px;
    font-family: var(--om-font-menu);
    font-weight: 600;
    color: var(--om-muted);
    transition: all var(--om-trans);
}
.om-pagination li > a:hover { background: var(--om-bg-soft); color: var(--om-primary); }
.om-pagination li.uk-active > * { background: var(--om-primary); color: #fff; }

/* Card kod numarası (yeni eklenen) */
.om-card__code {
    display: inline-block;
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 11px;
    color: var(--om-muted);
    background: var(--om-bg-soft);
    padding: 2px 8px;
    border-radius: 4px;
    margin-bottom: 8px;
}

/* ==========================================================
   ILETISIM SAYFASI
   ========================================================== */
.om-contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}
@media (max-width: 768px) {
    .om-contact-grid { grid-template-columns: 1fr; gap: 24px; }
}

.om-form__label {
    display: block;
    font-family: var(--om-font-menu);
    font-size: 13px;
    font-weight: 600;
    color: var(--om-primary);
    margin-bottom: 6px;
    letter-spacing: .02em;
}

/* Bayilik avantaj kart ikonu */
.om-bayi-icon {
    display: inline-flex;
    width: 60px; height: 60px;
    border-radius: 14px;
    background: rgba(212,162,89,.12);
    color: var(--om-accent);
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.om-contact-card {
    background: linear-gradient(155deg, var(--om-primary) 0%, var(--om-primary-2) 100%);
    color: #fff;
    border-radius: var(--om-radius-lg);
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
}
.om-contact-card::before {
    content: "";
    position: absolute;
    right: -40%; top: -20%;
    width: 280px; height: 280px;
    background: radial-gradient(closest-side, rgba(212,162,89,.18), transparent);
    pointer-events: none;
}
.om-contact-card__title {
    font-family: var(--om-font-display);
    font-weight: 300;
    font-size: 1.4rem;
    color: #fff;
    margin: 0 0 24px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255,255,255,.12);
    position: relative;
    z-index: 1;
}
.om-contact-card__title::after {
    content: "";
    position: absolute;
    left: 0; bottom: -1px;
    width: 36px; height: 2px;
    background: var(--om-accent);
}

.om-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}
.om-contact-item:last-child { margin-bottom: 0; }
.om-contact-item__icon {
    width: 40px; height: 40px;
    flex: 0 0 40px;
    border-radius: 10px;
    background: rgba(212,162,89,.15);
    color: var(--om-accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.om-contact-item strong {
    display: block;
    font-family: var(--om-font-menu);
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,.65);
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-bottom: 4px;
}
.om-contact-item p {
    margin: 0;
    color: #fff;
    font-size: 15px;
    line-height: 1.6;
}
.om-contact-item a { color: var(--om-accent); }
.om-contact-item a:hover { color: #fff; }

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
    [data-anim] { opacity: 1 !important; transform: none !important; }
}
