@charset "utf-8";
/* ============================================================================
   troypm-modern.css — "Koyu Lüks" (Variant A) restyle of the legacy TroyPM
   theme, ported from the client-approved mockup
   docs/design-variants/troypm-varyantlar.html (section .va).

   CSS-layer skin ONLY: the legacy markup families (main-banner, free_account,
   services_slider, main_news, wrap/side-menu) are untouched. Remove this one
   stylesheet (and the font link) from _Layout.cshtml to restore the pure
   legacy look. The header/footer partials were rebuilt (masthead/nav band,
   footer-main/footer-bottom) and are styled exclusively from here.

   Variant A language:
   - deep brown-black shell (#17100a), warm parchment text (#e9e2d8)
   - Playfair Display serif headlines (#f4ecdd) with italic gold accent spans
   - glass cards: translucent white gradient + gold-tint border, 22px radius,
     hover lift with deep shadow
   - pill buttons: gold-gradient primary (dark #241703 text), thin gold-outline
     secondary (#e8c96a text), hover translateY(-2px) + gold glow
   - radial gold glows over band tops; 1px gold-tint hairlines between zones
   - long-form CMS bodies render on warm light "paper" panels so legacy inline
     dark text colors stay readable on the dark shell
   ========================================================================== */

:root {
    --tp-shell: #17100a;         /* page background */
    --tp-shell-raised: #1b140d;  /* header surface (≈ 2% white over shell) */
    --tp-footer: #100a06;        /* footer main zone */
    --tp-footer-deep: #0b0704;   /* footer bottom bar */
    --tp-text: #e9e2d8;          /* body text on dark */
    --tp-heading: #f4ecdd;       /* serif headlines */
    --tp-muted: #b9ad9b;         /* secondary text on dark */
    --tp-faded: #8f8471;         /* tertiary text on dark */
    --tp-nav: #cfc5b6;           /* nav link resting color */
    --tp-gold: #ffc501;
    --tp-gold-deep: #d6a402;
    --tp-gold-soft: #c8a44a;     /* quiet gold (eyebrows, footer accents) */
    --tp-gold-text: #e8c96a;     /* gold-tinted text on dark */
    --tp-on-gold: #241703;       /* dark text on gold surfaces */
    --tp-paper: #f4ecdd;         /* light panel for long-form CMS bodies */
    --tp-paper-ink: #241c10;     /* text on paper */
    --tp-paper-link: #a67c00;    /* links on paper */
    --tp-hairline: rgba(214, 164, 2, 0.25);
    --tp-glass: linear-gradient(160deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015));
    --tp-glass-border: rgba(214, 164, 2, 0.22);
    --tp-radius-card: 22px;
    --tp-radius-pill: 999px;
    --tp-shadow-lift: 0 24px 60px rgba(0, 0, 0, 0.5);
    --tp-shadow-glow: 0 12px 30px rgba(214, 164, 2, 0.25);
    --tp-grad-gold: linear-gradient(135deg, #d6a402, #ffc501);
    --tp-grad-chip: radial-gradient(circle at 30% 30%, #ffc501, #d6a402);
    --tp-glow-band: radial-gradient(ellipse 90% 70% at 50% -10%, rgba(214, 164, 2, 0.16), transparent 60%);
    --tp-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --tp-sans: 'Noto Sans', 'Titillium Web', Arial, sans-serif;
}

/* ── Base ─────────────────────────────────────────────────────────────────── */

/* The owl carousel's JS-sized strip can round 1px past the viewport; the page
   never legitimately scrolls sideways, so clip it (legacy html set auto). */
html { overflow-x: hidden; }

body {
    background: var(--tp-shell);
    color: var(--tp-text);
    font-family: var(--tp-sans);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ── Full-width layout (client-confirmed hard requirement) ────────────────────
   Page shell = full viewport; content rows ≈ 96% of the viewport, capped at
   1360px (24px minimum gutters — 1232px of content at a 1280px viewport).   */

.container {
    width: 100% !important;
    max-width: none;
    padding-left: 0;
    padding-right: 0;
    background: var(--tp-shell);
}

.inner,
.main-menu { /* .main-menu has no .inner of its own — same gutters on the band */
    padding-left: max(24px, calc((100% - 1360px) / 2));
    padding-right: max(24px, calc((100% - 1360px) / 2));
}

/* Hero slider: full-bleed, images covering the full width. */
.main-banner .owl-carousel .owl-item img { display: block; width: 100%; }

/* Sub-page banner photo was sized for the old 1000px box; cover the band now. */
.sub-page { background-size: cover !important; }

@media (max-width: 767px) {
    .inner,
    .main-menu { padding-left: 16px; padding-right: 16px; }
}

/* ── Header tier 1: dark masthead ─────────────────────────────────────────── */

/* A faint top-lit sheen over the raised shell so the tier reads as a lit
   material surface rather than a flat hex fill (the mockup's .va .mast plays
   the same trick with rgba(255,255,255,.02) over the shell), plus a whisper
   of a gold hairline articulating the wordmark tier from the nav band — half
   the strength of the header's main hairline below the nav. */
.masthead {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0) 70%),
        var(--tp-shell-raised);
    border-bottom: solid 1px rgba(214, 164, 2, 0.13);
    position: relative;
    z-index: 30;
}

/* The masthead now carries only the wordmark (the platform pills, TR|EN
   switcher and search toggle all left it on client's orders), so it runs
   slimmer than the old utilities row did — but the mark still gets generous
   air above and below, the way a premium wordmark is set. */
.masthead-row {
    display: flex;
    align-items: center;
    justify-content: center; /* wordmark rides centered in the slim masthead */
    gap: 24px;
    flex-wrap: wrap;
    padding: 18px 0;
}

.masthead-brand a { display: block; }
.masthead-brand img { display: block; height: 40px; width: auto; }

/* ── Header tier 2: nav row on the same dark surface ──────────────────────── */

.main-menu {
    background: var(--tp-shell-raised);
    border: none;
    margin-bottom: 0;
    font-weight: 500;
    font-size: 13.5px;      /* mockup .va nav value */
    letter-spacing: 0.18em;
    position: relative;
    z-index: 20;
    /* The header floats above the page: a 1px dark seat directly under the
       gold hairline (engraves it into the surface) and a deep, soft falloff
       that fades onto whatever band follows — hero photo or sub-page banner. */
    box-shadow:
        0 1px 0 rgba(0, 0, 0, 0.35),
        0 24px 48px -28px rgba(0, 0, 0, 0.65);
}

/* The header's gold hairline, upgraded from a uniform border to a gradient
   rule that breathes out toward the viewport edges — a drawn line, not a CSS
   border. Sits inside the band's last pixel; hit-testing unaffected. */
.main-menu::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    pointer-events: none;
    background: linear-gradient(
        90deg,
        rgba(214, 164, 2, 0.05),
        rgba(214, 164, 2, 0.42) 18%,
        rgba(214, 164, 2, 0.42) 82%,
        rgba(214, 164, 2, 0.05)
    );
}

.main-menu ul li { margin-right: 0; }
.main-menu .navbar-nav > li { margin-right: 8px; }

.main-menu .navbar-nav > li > a {
    position: relative; /* anchors the ::after underline */
    padding: 15px 12px 13px !important;
    color: var(--tp-nav) !important;
    border-radius: 0;
    transition: color 0.3s ease;
}

/* The gold underline is a thin rule hugging the label (not a tab-strip border
   at the band's very bottom). It grows from the center on hover — an unhurried
   reveal — and stands full-width under the active page. */
.main-menu .navbar-nav > li > a::after {
    content: "";
    position: absolute;
    left: 12px;   /* spans the label, mirroring the link's side padding */
    right: 12px;
    bottom: 8px;
    height: 2px;
    border-radius: 1px;
    background: var(--tp-grad-gold);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

/* Kill the legacy arrow1.png hover (background-color:#fff !important there). */
.main-menu .navbar-nav > li > a:hover,
.main-menu .navbar-nav > li > a:focus {
    background: none !important;
    color: var(--tp-gold) !important;
}

.main-menu .navbar-nav > li > a:hover::after,
.main-menu .navbar-nav > li > a:focus::after,
.main-menu .navbar-nav > li.active > a::after { transform: scaleX(1); }

.main-menu .navbar-nav > li.active > a {
    background: none !important;
    color: var(--tp-gold) !important;
}

/* Cancel the legacy 90px right padding that cleared the old absolutely
   positioned language switcher (which now sits at the band's right edge). */
@media (min-width: 768px) {
    .main-menu ul.navbar-nav { padding-right: 0; }

    /* Nav band as a flex row: nav links left, TR|EN switcher hard right.
       display needs !important only to beat Bootstrap's own
       `.navbar-collapse.collapse { display: block !important }` reset. */
    .main-menu .navbar-collapse.collapse {
        display: flex !important;
        align-items: center;
        justify-content: center; /* menu rides centered; language sits right beside it */
    }

    /* styles.css pins .language absolute (right:0/top:15px), which drops it
       out of the centered flex row — restore it to normal flow beside the menu. */
    .main-menu .language {
        position: static;
        top: auto;
        right: auto;
        margin-left: 18px;
    }
}

/* Language dropdown — a compact "TR ▾" button in the nav-link register
   (letterspaced, muted resting color, gold when open/hovered) opening a small
   dark glass panel in the same language as the ÜRÜNLER dropdown. */
.main-menu .language { position: relative; }

/* Distinct from the flat nav links on client's orders: the language control
   reads as a small glass pill with a gold hairline, not another menu item. */
.main-menu .lang-current {
    display: flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(214, 164, 2, 0.45);
    border-radius: var(--tp-radius-pill);
    cursor: pointer;
    font-family: inherit;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.18em;
    color: var(--tp-nav);
    transition: color 0.15s ease;
}

.main-menu .lang-current:hover,
.main-menu .lang-current:focus,
.main-menu .language.open .lang-current {
    color: var(--tp-gold);
    border-color: rgba(255, 197, 1, 0.75);
    background: rgba(214, 164, 2, 0.12);
}

.main-menu .lang-current .fa { font-size: 14px; transition: transform 0.2s ease; }
.main-menu .language.open .lang-current .fa { transform: rotate(180deg); }

.main-menu .lang-menu {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    margin: 10px 0 0;
    padding: 8px;
    list-style: none;
    min-width: 210px;
    background: var(--tp-glass), var(--tp-shell-raised);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: solid 1px rgba(214, 164, 2, 0.35);
    border-radius: 18px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(0, 0, 0, 0.2);
    z-index: 40;
    transform-origin: top right;
}

.main-menu .language.open .lang-menu {
    display: block;
    animation: tpMenuIn 0.16s ease-out;
}

/* Shared entrance for every header overlay (language panel, ÜRÜNLER menu) —
   one elevation language, one motion language. */
@keyframes tpMenuIn {
    from { opacity: 0; transform: translateY(-6px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Rows separated by a whisper of a hairline, none after the last. */
.main-menu .lang-menu li + li { border-top: 1px solid rgba(255, 255, 255, 0.06) !important; }

/* styles.css carries `!important` colors for these links (hover/active turn
   `#2c1b00` — invisible on the dark panel, which read as "disappearing"),
   and floats the items side-by-side; both need `!important` to beat it. */
.main-menu .lang-menu li {
    float: none !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.main-menu .lang-menu li a {
    /* styles.css's higher-specificity `.language ul li a { display:block }`
       otherwise wins and stacks the badge above the name. */
    display: flex !important;
    align-items: center !important;
    gap: 12px;
    height: auto !important;
    line-height: 1.4 !important;
    padding: 9px 12px !important;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--tp-text) !important;
    background: none !important;
    transition: background-color 0.15s ease, color 0.15s ease;
}

/* The language code rides in a small circular badge; the active language's
   badge fills gold, echoing the site's pill CTAs. */
.main-menu .lang-menu .lang-code {
    flex: 0 0 auto;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(214, 164, 2, 0.45);
    background: rgba(255, 255, 255, 0.04);
    font-size: 11px;
    letter-spacing: 0.06em;
    transition: border-color 0.15s ease, background 0.15s ease;
}

.main-menu .lang-menu .lang-name {
    font-weight: 400;
    font-size: 13px;
    letter-spacing: 0.02em;
    color: var(--tp-muted);
}

.main-menu .lang-menu li.active a { color: var(--tp-gold) !important; }
.main-menu .lang-menu li.active a .lang-name { color: var(--tp-gold); }

.main-menu .lang-menu li.active a .lang-code {
    background: linear-gradient(135deg, #d6a402, #ffc501);
    border-color: transparent;
    color: var(--tp-on-gold);
}

/* Gold check closes the active row on the right. */
.main-menu .lang-menu li.active a::after {
    content: "\f00c";
    font-family: FontAwesome;
    font-size: 12px;
    margin-left: auto;
    color: var(--tp-gold);
}

.main-menu .lang-menu li a[href]:hover,
.main-menu .lang-menu li a[href]:focus {
    background: rgba(214, 164, 2, 0.14) !important;
    color: var(--tp-gold) !important;
}

.main-menu .lang-menu li a[href]:hover .lang-name,
.main-menu .lang-menu li a[href]:focus .lang-name { color: var(--tp-gold); }

.main-menu .lang-menu li a[href]:hover .lang-code,
.main-menu .lang-menu li a[href]:focus .lang-code {
    border-color: rgba(255, 197, 1, 0.8);
    background: rgba(214, 164, 2, 0.16);
}

/* İNTERNET ŞUBESİ — the gold-gradient pill, rightmost element of the nav band. */
.main-menu .nav-cta {
    display: inline-block;
    padding: 10px 24px;
    border-radius: var(--tp-radius-pill);
    background: var(--tp-grad-gold);
    color: var(--tp-on-gold) !important;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    line-height: 1.2;
    white-space: nowrap;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.main-menu .nav-cta:hover,
.main-menu .nav-cta:focus {
    transform: translateY(-2px);
    box-shadow: var(--tp-shadow-glow);
    color: var(--tp-on-gold) !important;
    text-decoration: none;
}

/* ÜRÜNLER dropdown: dark glass panel, light items, gold hover. Bootstrap
   class hooks (dropdown-toggle / dropdown-menu / .open) are untouched.
   Blur, shadow ring and entrance animation deliberately mirror .lang-menu so
   both header overlays speak one elevation language. (No gap under the link:
   Bootstrap's .navbar-nav > li > .dropdown-menu zeroes margin-top, which also
   keeps the :hover bridge unbroken while the pointer travels into the panel.) */
.main-menu .dropdown-menu {
    background: var(--tp-glass), var(--tp-shell-raised);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: solid 1px rgba(214, 164, 2, 0.35);
    border-radius: 16px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(0, 0, 0, 0.2);
    padding: 10px;
    margin-top: 2px;
    min-width: 220px;
    transform-origin: top left;
    animation: tpMenuIn 0.16s ease-out; /* runs each time display flips to block */
}

/* Bootstrap's navbar rules square the panel's top corners (a docked-tab look);
   restore the full radius so it reads as the same floating glass card as the
   language panel. */
.main-menu .navbar-nav > li > .dropdown-menu {
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

.main-menu .dropdown-menu > li > a {
    display: block;
    color: var(--tp-text) !important;
    padding: 10px 16px !important;
    border-radius: 10px;
    font-size: 13.5px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-align: left;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.main-menu .dropdown-menu > li > a:hover,
.main-menu .dropdown-menu > li > a:focus {
    background: rgba(214, 164, 2, 0.14) !important;
    color: var(--tp-gold) !important;
}

/* Product rows: the metal's name over a muted line of its real instrument
   forms (the ## group markers of the product Description — the same data the
   detail page's accordion renders). Quiet by design: 11.5px, muted parchment,
   warming to soft gold with the row hover. */
.main-menu .dropdown-menu .dd-title { display: block; }

.main-menu .dropdown-menu .dd-sub {
    display: block;
    margin-top: 2px;
    font-size: 11.5px;
    font-weight: 400;
    letter-spacing: 0.03em;
    line-height: 1.35;
    color: var(--tp-muted);
    white-space: nowrap; /* one quiet line; server-side truncation caps length */
    transition: color 0.15s ease;
}

.main-menu .dropdown-menu > li > a:hover .dd-sub,
.main-menu .dropdown-menu > li > a:focus .dd-sub { color: var(--tp-gold-soft); }

/* Desktop: the dropdown also opens on hover (click via Bootstrap JS still works). */
@media (min-width: 768px) {
    #liMenuUrunler:hover > .dropdown-menu { display: block; }
}

/* Mobile hamburger: restyled only — Bootstrap collapse hooks untouched.
   Same material grammar as the language pill: gold-hairline pill, glass fill,
   brightening border on touch/hover. */
.main-menu .navbar-toggle {
    border: solid 1px rgba(214, 164, 2, 0.45);
    border-radius: var(--tp-radius-pill);
    background: rgba(255, 255, 255, 0.04);
    margin: 10px 15px 10px 0;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.main-menu .navbar-toggle .icon-bar { background-color: var(--tp-gold-text); }

.main-menu .navbar-toggle:hover,
.main-menu .navbar-toggle:focus {
    background: rgba(214, 164, 2, 0.14);
    border-color: rgba(255, 197, 1, 0.75);
}

.main-menu .navbar-collapse { border-top: none; box-shadow: none; }

@media (max-width: 767px) {
    .main-menu .navbar-nav > li { margin-right: 0; }
    .main-menu .navbar-nav > li > a {
        border-radius: 10px;
        margin: 2px 0;
        text-align: left;
        padding: 12px 14px !important;
    }
    /* In the collapsed menu the active page reads as a gold-tint pill row;
       the desktop underline would double up with it. */
    .main-menu .navbar-nav > li > a::after { display: none; }
    .main-menu .navbar-nav > li.active > a { background: rgba(214, 164, 2, 0.14) !important; }
    .main-menu .dropdown-menu { box-shadow: none; background: rgba(255, 255, 255, 0.04); border-radius: 12px; }
    /* In the collapsed menu the panel is as wide as the phone allows — wrap
       rather than risk pushing the layout sideways. */
    .main-menu .dropdown-menu .dd-sub { white-space: normal; }

    .masthead-row { padding: 12px 0; gap: 12px; }
    .masthead-brand img { height: 32px; }

    /* Inside the collapsed hamburger menu the language dropdown and the
       İnternet Şubesi pill become rows of their own, separated from the nav
       links by the header hairline; the panel opens in flow, not floating. */
    .main-menu .language {
        margin-top: 6px;
        padding: 4px 2px 8px;
        border-top: solid 1px var(--tp-hairline);
    }
    .main-menu .lang-current { padding: 10px 14px; }
    .main-menu .lang-menu {
        position: static;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.04);
        border-radius: 12px;
    }
    .main-menu .nav-cta { margin: 4px 14px 16px; }
}

/* ── Hero slider ──────────────────────────────────────────────────────────── */

.main-banner { background: var(--tp-shell); }
.main-banner .arrow { display: none; } /* decorative legacy arrow — off */

/* The slide photos are bright golds; the slogan needs a real scrim behind it,
   not just a text-shadow, or it drowns. A dark gradient over the photo keeps
   the image visible while giving the type a stable dark field to sit on. */
#owl-mainbanner .item { position: relative; }
#owl-mainbanner .item::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
        180deg,
        rgba(23, 16, 10, 0.20) 0%,
        rgba(23, 16, 10, 0.30) 45%,
        rgba(23, 16, 10, 0.72) 100%
    );
}

#owl-mainbanner .item .slogan {
    font-family: var(--tp-serif);
    font-weight: 400;
    font-size: 2.2em;
    letter-spacing: -0.01em;
    color: var(--tp-heading);
    z-index: 2; /* above the scrim */
    text-shadow:
        0 2px 6px rgba(0, 0, 0, 0.85),
        0 6px 28px rgba(0, 0, 0, 0.7);
}

#owl-mainbanner .item .slogan h1 {
    font-weight: 400; /* legacy forced 900 */
    font-size: 1.15em;
}

#owl-mainbanner .item .slogan span { color: var(--tp-gold); font-style: italic; }

/* ── Sub-page banner slogan ───────────────────────────────────────────────── */

.sub-page .slogan {
    font-family: var(--tp-serif);
    font-weight: 400;
    font-size: 28px;
    color: var(--tp-heading);
    background-image: none; /* removes arrow2.png */
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.55);
}

.sub-page .slogan h1 {
    font-size: 44px;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.sub-page .slogan span { color: var(--tp-gold); font-style: italic; }

/* ── Homepage band 1: ÜCRETSİZ HESAP AÇIN ─────────────────────────────────── */

.free_account {
    background: var(--tp-glow-band), var(--tp-shell); /* radial gold glow over dark */
    padding: 110px 0;
}

.free_account .title {
    font-family: var(--tp-serif);
    font-size: 46px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--tp-heading);
    letter-spacing: -0.01em;
    margin-bottom: 24px;
}

.free_account .title span { font-weight: 500; font-style: italic; color: var(--tp-gold); }

.free_account .quote { font-size: 20px; color: var(--tp-gold-soft); letter-spacing: 0.14em; margin-bottom: 18px; }

.free_account .text {
    font-family: var(--tp-sans);
    font-size: 16.5px;
    font-weight: 300;
    color: var(--tp-muted);
    line-height: 1.8;
    max-width: 680px;
    margin: 0 auto 44px;
}

/* The swirl graphic becomes gold-gradient pill CTAs. */
.free_account .link {
    width: auto;
    height: auto;
    background: none;
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.free_account .link .item { width: auto; float: none; padding: 0; }

.free_account .link .item a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 34px;
    background: var(--tp-grad-gold);
    border: none;
    border-radius: var(--tp-radius-pill);
    color: var(--tp-on-gold);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.free_account .link .item .icon { font-size: 17px; color: inherit; }

.free_account .link .item .name {
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.14em;
    color: inherit;
}

.free_account .link .item a:hover { transform: translateY(-2px); box-shadow: var(--tp-shadow-glow); color: var(--tp-on-gold); }
.free_account .link .item a:hover .name { color: inherit; }

/* ── Homepage band 2: SERVİSLERİMİZ ───────────────────────────────────────── */

.services_slider {
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(214, 164, 2, 0.1), transparent 60%), var(--tp-shell);
    padding: 100px 0 84px;
}

/* Band title in the mockup's display voice: large Playfair, centered, with the
   short gold rule as the only ornament. An italic gold accent appears only if
   the translation itself carries a <span>. */
.services_slider .title {
    font-family: var(--tp-serif);
    font-size: 44px;
    font-weight: 400;
    letter-spacing: -0.01em;
    color: var(--tp-heading);
    text-align: center;
    margin-bottom: 0;
}

.services_slider .title span { font-weight: 500; font-style: italic; color: var(--tp-gold); }

.services_slider .title:after {
    content: "";
    display: block;
    width: 48px;
    height: 2px;
    border-radius: 2px;
    background: var(--tp-gold-deep);
    margin: 20px auto 26px;
}

/* Equal-height cards: the owl strip becomes a flex row so every cell stretches
   to the tallest card. Owl's JS keeps setting the cell widths, so the carousel
   itself is untouched (!important beats owl's inline display:block). */
#owl-services .owl-wrapper { display: flex !important; }
#owl-services .owl-item { float: none; flex: 0 0 auto; display: flex; }

/* Each service is one glass card (the whole card is the link). The vertical
   margins leave headroom inside the carousel's overflow box for the hover
   lift and its shadow. */
.services_slider .list .item {
    display: flex;
    width: 100%;
    margin: 16px 13px 48px;
    background: var(--tp-glass);
    border: solid 1px var(--tp-glass-border);
    border-radius: var(--tp-radius-card);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.services_slider .list .item:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 197, 1, 0.6);
    box-shadow: var(--tp-shadow-lift);
}

.services_slider .list .item > a {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 36px 24px 32px;
    text-align: center;
}

/* Circular gold-gradient icon chip with the dark glyph. */
.services_slider .list .icon {
    flex: 0 0 auto;
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 24px;
    color: var(--tp-on-gold);
    background: var(--tp-grad-chip);
    border: none;
    border-radius: 50%;
    transition: none;
    margin: 0 0 22px;
}

.services_slider .list .item:hover .icon { color: var(--tp-on-gold); background: var(--tp-grad-chip); }

.services_slider .list .name {
    font-family: var(--tp-serif);
    color: #f0e6cf;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.01em;
    line-height: 1.35;
    margin-bottom: 10px;
    transition: color 0.25s ease;
}

.services_slider .list .item:hover .name { color: var(--tp-gold); }

/* Short CMS excerpt under the name — clamped so ragged source lengths cannot
   unbalance the row (equal heights come from the flex stretch above). */
.services_slider .list .text {
    font-family: var(--tp-sans);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.75;
    color: #a99d88;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
}

/* The legacy per-item chevron is gone from the markup; keep it dead if any
   cached page still renders one. */
.services_slider .list .arrow { display: none; }

/* Prev/next: thin gold circles replacing the legacy oversized dark angles
   (same specificity as owl.theme.css — this sheet loads after it). */
#owl-services .owl-controls .owl-buttons div {
    width: 44px;
    height: 44px;
    line-height: 42px;
    margin: -22px 0 0;
    top: 50%;
    font-size: 20px;
    text-align: center;
    color: var(--tp-gold-text);
    background: rgba(23, 16, 10, 0.72);
    border: solid 1px rgba(214, 164, 2, 0.45);
    border-radius: 50%;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

#owl-services .owl-controls .owl-buttons .owl-prev { left: -9px; }
#owl-services .owl-controls .owl-buttons .owl-next { right: -9px; }

#owl-services .owl-controls.clickable .owl-buttons div:hover {
    background: var(--tp-grad-gold);
    border-color: transparent;
    color: var(--tp-on-gold);
}

/* Dots (only if pagination is ever switched on for this band): small gold
   points, active slightly larger. */
.services_slider .owl-controls .owl-pagination { position: static; margin-top: 4px; }

.services_slider .owl-controls .owl-page span {
    width: 8px;
    height: 8px;
    margin: 0 5px;
    border-radius: 50%;
    background: rgba(214, 164, 2, 0.35);
    transition: background 0.2s ease, transform 0.2s ease;
}

.services_slider .owl-controls .owl-page.active span,
.services_slider .owl-controls.clickable .owl-page:hover span {
    background: var(--tp-gold);
    transform: scale(1.3);
}

/* ── Homepage band 3: BASINDA TROY / HABERLER ─────────────────────────────── */

.main_news { background: var(--tp-shell); padding: 100px 0 120px; }

.main_news .title {
    font-family: var(--tp-serif);
    font-size: 30px;
    font-weight: 400;
    letter-spacing: -0.01em;
    color: var(--tp-heading);
    border-bottom: solid 1px rgba(214, 164, 2, 0.35);
    padding-bottom: 14px;
    margin-bottom: 28px;
}

.main_news .title span { font-weight: 500; font-style: italic; color: var(--tp-gold); }

/* Each news column becomes a glass card. */
.main_news .news_list {
    background: var(--tp-glass);
    border: solid 1px var(--tp-glass-border);
    border-radius: var(--tp-radius-card);
    padding: 24px;
    border-bottom: solid 1px var(--tp-glass-border);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.main_news .news_list:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 197, 1, 0.6);
    box-shadow: var(--tp-shadow-lift);
}

.main_news .news_list .photo { background: none; border-radius: 14px; overflow: hidden; }
.main_news .news_list .photo img { display: block; width: 100%; }

.main_news .news_list .date {
    font-size: 12px;
    font-style: normal;
    letter-spacing: 0.14em;
    color: var(--tp-faded);
}

.main_news .news_list .name { font-size: 16px; line-height: 1.4; }
.main_news .news_list .name a { color: #f0e6cf; font-weight: 600; }
.main_news .news_list .name a:hover { color: var(--tp-gold); }

.main_news .news_list .text {
    font-family: var(--tp-sans);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.75;
    color: #a99d88;
}

/* ── Inner pages: wrap / side menu / content ──────────────────────────────── */

.wrap { background: var(--tp-shell); padding: 56px 0 100px; }

.content { border-left: solid 1px rgba(214, 164, 2, 0.18); }

.content .title { border-bottom: solid 1px rgba(214, 164, 2, 0.35); padding-bottom: 18px; margin-bottom: 34px; }

.content .title h1 {
    font-family: var(--tp-serif);
    font-size: 38px;
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 1.2;
    color: var(--tp-heading);
}

.content .title h1 span { font-weight: 500; font-style: italic; color: var(--tp-gold); }

/* Long-form CMS bodies render on a warm light "paper" panel: legacy imported
   HTML carries inline dark colors (e.g. color:rgb(34,34,34)) that would vanish
   on the dark shell — on paper they stay readable, no per-node overrides. */
.content .text {
    background: var(--tp-paper);
    color: var(--tp-paper-ink);
    border-radius: var(--tp-radius-card);
    padding: 38px 42px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
    font-size: 16.5px;
    line-height: 1.7;
    max-width: 920px;
}

.content .text a { color: var(--tp-paper-link); }
.content .text a:hover { color: var(--tp-gold-deep); }

@media (max-width: 620px) {
    .content .text { padding: 26px 22px; }
}

/* Side menu becomes a glass card. */
.side-menu {
    background: var(--tp-glass);
    border: solid 1px var(--tp-glass-border);
    border-radius: var(--tp-radius-card);
    padding: 26px 28px;
}

.side-menu h1 {
    color: var(--tp-gold-soft);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    border-bottom: solid 1px var(--tp-hairline);
}

.side-menu h1:after { color: var(--tp-gold-deep); }

.side-menu ul li a { color: var(--tp-muted); }
.side-menu ul li a:hover { color: var(--tp-gold); }
.side-menu ul li.active a { color: var(--tp-gold); font-weight: 600; }

ul.hr-list li a { color: var(--tp-paper-link); }
ul.hr-list li a:hover { color: var(--tp-gold-deep); }

/* Annual/audit report year buttons: gold-ring circles on dark. */
.content .report_list ul li a {
    border: solid 1px rgba(214, 164, 2, 0.55);
    border-radius: 50%;
    color: var(--tp-gold-text);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.content .report_list ul li a:hover {
    background: var(--tp-grad-gold);
    border-color: transparent;
    color: var(--tp-on-gold);
    transform: translateY(-2px);
    box-shadow: var(--tp-shadow-glow);
}

/* Accordion (corporate/policy pages): light paper panels for the bodies. */
.corporate_acc .panel { background: none; }
.corporate_acc .panel .panel-heading { border-bottom: solid 1px rgba(214, 164, 2, 0.2); }
.corporate_acc .panel .panel-heading h4 a { color: #d8cdb9; }
.corporate_acc .panel .panel-heading h4 a:hover { color: var(--tp-gold); }

.corporate_acc .panel .panel-body {
    background: var(--tp-paper);
    color: var(--tp-paper-ink);
    border-radius: 14px;
    margin-top: 8px;
}

.corporate_acc .panel .panel-body a { color: var(--tp-paper-link); }

/* Contact page blocks (outside the paper body) */
.contact .contact_adress { color: var(--tp-muted); }
.contact .contact_adress h1 { color: #f0e6cf; }
.contact .contact_item a { color: var(--tp-muted); }
.contact .contact_item a:hover { color: var(--tp-gold); }
.contact .photo { border: solid 1px var(--tp-glass-border); border-radius: 16px; overflow: hidden; }

/* Google's map tiles are always light, so it's framed like a photograph
   set into the dark page rather than reskinned — a gold hairline + deep
   shadow reads as "elegant frame," not "wrong-colored panel." */
.contact-map {
    margin-top: 32px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--tp-glass-border);
    box-shadow: var(--tp-shadow-lift);
}
.contact-map iframe { display: block; filter: saturate(0.9) contrast(1.02); }

/* ── Curved inputs (site-wide): rounded fields, gold focus ring ───────────── */

.content input[type="text"],
.content input[type="email"],
.content input[type="tel"],
.content input[type="date"],
.content select,
.content textarea,
.journal input,
.journal select,
.static-content input[type="text"],
.static-content input[type="email"],
.static-content select,
.static-content textarea {
    border-radius: 12px;
}

.content input[type="text"]:focus,
.content input[type="email"]:focus,
.content input[type="tel"]:focus,
.content input[type="date"]:focus,
.content select:focus,
.content textarea:focus,
.journal input:focus,
.journal select:focus,
.static-content input[type="text"]:focus,
.static-content input[type="email"]:focus,
.static-content select:focus,
.static-content textarea:focus {
    border-color: var(--tp-gold-deep);
    box-shadow: 0 0 0 3px rgba(214, 164, 2, 0.25);
    outline: none;
}

/* Static-content family (search / application / payment): paper panel so the
   page-local light styling stays readable over the dark shell. */
.static-content {
    background: var(--tp-paper);
    color: var(--tp-paper-ink);
    border-radius: var(--tp-radius-card);
    padding: 34px 38px;
    margin: 20px 0 40px;
}

@media (max-width: 620px) {
    .static-content { padding: 24px 18px; }
}

/* Search page + bulletin pagination (styled by later-loading page CSS, hence
   the !important on the radii): pills and rounded result cards. */
.search-page-input { border-radius: var(--tp-radius-pill) !important; }
.search-page-btn { border-radius: var(--tp-radius-pill) !important; }
.bulten-page-link { border-radius: var(--tp-radius-pill) !important; }
.search-result-item { border-radius: 16px !important; }

/* ── News / press / bulletin lists and detail ─────────────────────────────── */

.sub_news_list .item .date,
.sub_news_detail .date { font-style: normal; color: var(--tp-faded); }

.sub_news_list .item .photo,
.sub_news_detail .photo { background: none; border-radius: 16px; overflow: hidden; border: solid 1px var(--tp-glass-border); }

.sub_news_list .item .name a { color: #f0e6cf; font-weight: 600; }
.sub_news_list .item .name a:hover { color: var(--tp-gold); }
.sub_news_list .item .text { color: #a99d88; font-family: var(--tp-sans); }
.sub_news_list ul li { border-bottom: solid 1px rgba(255, 255, 255, 0.08); }
.sub_news_list ul li a { color: var(--tp-muted); }
.sub_news_list ul li a:hover { color: var(--tp-gold); }

.sub_news_detail .name {
    font-family: var(--tp-serif);
    font-size: 28px;
    font-weight: 400;
    line-height: 1.25;
    color: var(--tp-heading);
    margin-bottom: 14px;
}

/* Press/news article bodies carry imported inline colors — paper panel. */
.sub_news_detail .text {
    background: var(--tp-paper);
    color: var(--tp-paper-ink);
    border-radius: var(--tp-radius-card);
    padding: 34px 38px;
    font-family: var(--tp-sans);
    font-size: 15.5px;
    line-height: 1.7;
    border-bottom: none;
    max-width: 920px;
}

.sub_news_detail .text a { color: var(--tp-paper-link); }

@media (max-width: 620px) {
    .sub_news_detail .text { padding: 24px 18px; }
}

/* "Other news" button: thin gold-outline pill. */
.news_link a {
    background: transparent;
    color: var(--tp-gold-text);
    border: solid 1px rgba(214, 164, 2, 0.55);
    border-radius: var(--tp-radius-pill);
    transition: transform 0.3s ease, box-shadow 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.news_link a:hover {
    background: transparent;
    color: var(--tp-gold);
    border-color: var(--tp-gold);
    transform: translateY(-2px);
    box-shadow: var(--tp-shadow-glow);
}

/* Pagination: detached outline pills, gold-gradient active state. */
.pager_content .pagination > li > a,
.pager_content .pagination > li > span {
    border-radius: var(--tp-radius-pill) !important;
    margin: 0 3px;
    background: transparent;
    border-color: rgba(214, 164, 2, 0.35);
    color: var(--tp-gold-text);
}

.pager_content .pagination > li > a:hover { background: rgba(214, 164, 2, 0.14); border-color: var(--tp-gold-deep); color: var(--tp-gold); }

.pager_content .pagination > .active > a,
.pager_content .pagination > .active > span,
.pager_content .pagination > .active > a:hover,
.pager_content .pagination > .active > span:hover,
.pager_content .pagination > .active > a:focus,
.pager_content .pagination > .active > span:focus {
    background: var(--tp-grad-gold);
    border-color: transparent;
    color: var(--tp-on-gold);
}

/* Bulletin archive search */
.journal h1 { border: solid 1px rgba(214, 164, 2, 0.45); border-radius: 12px; color: var(--tp-gold-text); }
.journal .date-range h2 { border-bottom-color: rgba(255, 255, 255, 0.12); color: var(--tp-muted); }
.journal .button { background: var(--tp-grad-gold); color: var(--tp-on-gold); border-radius: var(--tp-radius-pill); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.journal .button:hover { background: var(--tp-grad-gold); color: var(--tp-on-gold); transform: translateY(-2px); box-shadow: var(--tp-shadow-glow); }
.journal .result { border-left-color: rgba(255, 255, 255, 0.12); }
.journal .result-text { color: var(--tp-muted); }
.journal .result-text span { color: var(--tp-gold-text); }
.journal .result-list ul li { border-radius: 10px; }
.journal .result-list ul li:nth-child(odd) { background: transparent; }
.journal .result-list ul li:nth-child(even) { background: rgba(255, 255, 255, 0.045); }
.journal .result-list ul li a { color: var(--tp-muted); }
.journal .result-list ul li a:hover { color: var(--tp-gold); }

/* ── Footer: dark luxury, gold hairline top edge ──────────────────────────── */

footer { padding: 0; background: transparent; }

.footer-main {
    background: var(--tp-footer);
    border-top: solid 1px rgba(214, 164, 2, 0.2);
    padding: 88px 0 64px;
    color: var(--tp-muted);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.2fr 0.8fr;
    gap: 40px;
    align-items: start;
}

.footer-col { min-width: 0; }

/* Column eyebrows: small-caps gold, ~3px tracking, with a short gold hairline
   underneath (serif stays reserved for page headlines). */
.footer-heading {
    font-family: var(--tp-sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--tp-gold-soft);
    margin: 0 0 22px;
}

.footer-heading:after {
    content: "";
    display: block;
    width: 24px;
    height: 2px;
    border-radius: 2px;
    background: var(--tp-gold-deep);
    margin-top: 10px;
}

/* Brand column */
footer .logo { margin-bottom: 0; }
.footer-brand .logo img { display: block; height: 30px; width: auto; }

.footer-brand .brand-line {
    margin: 18px 0 26px;
    font-size: 13px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--tp-muted);
    max-width: 300px;
}

.footer-partners ul { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; margin: 0; padding: 0; list-style: none; }
.footer-partners img { display: block; height: 22px; width: auto; border-radius: 6px; opacity: 0.7; transition: opacity 0.15s ease; }
.footer-partners a:hover img { opacity: 1; }

/* KURUMSAL links: two balanced columns (11 rows read long as one), muted
   resting color, gold hover with a whisper of a rightward slide. */
.footer-links ul {
    margin: 0;
    padding: 0;
    list-style: none;
    columns: 2;
    column-gap: 28px;
}

.footer-links ul li { break-inside: avoid; }

.footer-links ul li a {
    display: inline-block;
    padding: 5px 0;
    font-size: 13.5px;
    line-height: 1.5;
    color: #a99d88;
    transition: color 0.15s ease, transform 0.2s ease;
}

.footer-links ul li a:hover { color: var(--tp-gold); transform: translateX(2px); }

/* HABERDAR OL newsletter: one seamless pill — the input flex-grows and the
   gold-gradient submit sits attached inside the same rounded container. The
   focus ring lives on the container (:focus-within), soft gold. */
.footer-newsletter .text {
    font-size: 13.5px;
    font-weight: 300;
    line-height: 1.75;
    color: var(--tp-muted);
    margin-bottom: 18px;
}

.newsletter-form {
    display: flex;
    align-items: stretch;
    padding: 5px;
    background: rgba(255, 255, 255, 0.04);
    border: solid 1px rgba(255, 197, 1, 0.35);
    border-radius: var(--tp-radius-pill);
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.newsletter-form:focus-within {
    border-color: var(--tp-gold);
    box-shadow: 0 0 0 3px rgba(255, 197, 1, 0.15);
}

.newsletter-form .textbox {
    flex: 1 1 auto;
    min-width: 0;
    height: 42px;
    padding: 0 14px 0 18px;
    background: none;
    border: none;
    border-radius: var(--tp-radius-pill);
    color: var(--tp-text);
    font-size: 14px;
    font-family: var(--tp-sans);
    font-style: normal;
    outline: none;
    box-shadow: none;
}

.newsletter-form .textbox::placeholder { color: rgba(233, 226, 216, 0.45); }

.newsletter-form .textbox:focus { border: none; box-shadow: none; }

.newsletter-form .button {
    flex: 0 0 auto;
    height: 42px;
    padding: 0 24px;
    border: none;
    border-radius: var(--tp-radius-pill);
    background: var(--tp-grad-gold);
    color: var(--tp-on-gold);
    font-family: var(--tp-sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    cursor: pointer;
    transition: box-shadow 0.3s ease, filter 0.3s ease;
}

.newsletter-form .button:hover { box-shadow: var(--tp-shadow-glow); filter: brightness(1.06); }

/* BİZİ TAKİP EDİN social: 40px thin-outline circles, muted glyph resting,
   gold border + glyph on hover. */
.footer-social .social { display: flex; gap: 12px; margin: 0; padding: 0; list-style: none; }

.footer-social .social li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: solid 1px rgba(214, 164, 2, 0.3);
    border-radius: 50%;
    color: #a99d88;
    font-size: 15px;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.footer-social .social li a:hover {
    background: rgba(214, 164, 2, 0.08);
    border-color: var(--tp-gold);
    color: var(--tp-gold);
    transform: translateY(-2px);
}

/* Bottom bar: darkest brown — copyright left, phone + legal link right. */
.footer-bottom { background: var(--tp-footer-deep); border-top: solid 1px rgba(214, 164, 2, 0.15); padding: 18px 0; }

.footer-bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-copyright { font-size: 13px; color: #7d7263; }

.footer-bottom-links { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }

.footer-phone { font-size: 13.5px; font-weight: 500; letter-spacing: 0.04em; color: var(--tp-gold-soft); }
.footer-phone i { color: var(--tp-gold-deep); margin-right: 6px; }
.footer-phone:hover { color: var(--tp-gold); }

.footer-info-link {
    display: inline-block;
    padding: 8px 20px;
    border: solid 1px rgba(214, 164, 2, 0.3);
    border-radius: var(--tp-radius-pill);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    color: var(--tp-gold-soft);
    transition: border-color 0.15s ease, color 0.15s ease;
}

.footer-info-link:hover { border-color: var(--tp-gold); color: var(--tp-gold); }

/* ── Responsive: scale display sizes and stack the footer ─────────────────── */

@media (max-width: 1100px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 991px) {
    .free_account { padding: 80px 0; }
    .services_slider { padding: 80px 0 64px; }
    .main_news { padding: 80px 0 90px; }
    .free_account .title { font-size: 36px; }
    .services_slider .title { font-size: 36px; }
    .content .title h1 { font-size: 32px; }
    .sub-page .slogan h1 { font-size: 36px; }
}

@media (max-width: 769px) {
    .free_account { padding: 64px 0; }
    .services_slider { padding: 64px 0 48px; }
    .main_news { padding: 64px 0 72px; }
    .wrap { padding: 40px 0 72px; }

    .free_account .title { font-size: 30px; }
    .services_slider .title { font-size: 29px; }
    .main_news .title { font-size: 24px; }
    .content .title h1 { font-size: 28px; }
    .sub_news_detail .name { font-size: 23px; }

    .sub-page .slogan { font-size: 20px; background-image: none; }
    .sub-page .slogan h1 { font-size: 28px; }
    #owl-mainbanner .item .slogan { font-size: 1.4em; }
}

@media (max-width: 620px) {
    .footer-main { padding: 64px 0 48px; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom-row { flex-direction: column; align-items: center; text-align: center; }

    /* Stacked columns read cleanly left-aligned; only the newsletter pill
       needs a slightly tighter submit so the row can never overflow 375px. */
    .newsletter-form .button { padding: 0 18px; }
}
