/* =============================================
   SATINALMA YÖNETİMİ — site.css
   Theme: salihalson.com editorial palette
   Colors: Ink #111110 | Off-white #F8F8F6 | Gold/Bronze #B8977E
   Fonts:  Playfair Display (headings) | DM Sans (body)
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
    /* ── Palette ── */
    --white: #ffffff;
    --off: #F8F8F6;
    --border: #E8E8E4;
    --border-2: #D0D0CA;
    --text: #111110;
    --muted: #767672;
    --subtle: #AEAEA8;
    --gold: #B8977E;
    --gold-bg: rgba(184,151,126,.08);
    --gold-border: rgba(184,151,126,.22);
    /* ── Typography ── */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', system-ui, sans-serif;
    /* ── Radii ── */
    --r-sm: 8px;
    --r-md: 14px;
    --r-lg: 20px;
    --r-xl: 28px;
    /* ── Shadows ── */
    --shadow-xs: 0 1px 3px rgba(0,0,0,.06);
    --shadow-sm: 0 4px 16px rgba(0,0,0,.06);
    --shadow-md: 0 12px 40px rgba(0,0,0,.08);
    /* ── Layout ── */
    --header-h: 72px;
    --transition: all .2s ease;
}

/* ── RESET ── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    overflow-x: hidden;
    max-width: 100%;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--text);
    font-size: 15px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    line-height: 1.12;
    color: var(--text);
}

/* ── LAYOUT ── */
.container-xl {
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto;
}

/* ── NAVBAR ── */
.sam-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    height: var(--header-h);
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(16px) saturate(1.4);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.nav-inner {
    height: var(--header-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

/* Brand */
.sam-brand {
    display: flex;
    flex-direction: column;
    gap: 1px;
    text-decoration: none;
    color: var(--text);
}

.brand-name {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
    letter-spacing: .2px;
}

.brand-tag {
    font-size: 10px;
    color: var(--subtle);
    letter-spacing: .6px;
    text-transform: uppercase;
}

/* Desktop nav links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: var(--r-sm);
    font-size: 14px;
    font-weight: 500;
    color: var(--muted) !important;
    transition: var(--transition);
    white-space: nowrap;
}

    .nav-link:hover, .nav-link.active {
        color: var(--text) !important;
        background: var(--off);
    }

    .nav-link.active {
        font-weight: 600;
    }

.nav-cta {
    margin-left: 8px;
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: var(--text);
    color: var(--white) !important;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--r-sm);
    border: 1px solid var(--text);
    transition: var(--transition);
    white-space: nowrap;
}

    .nav-cta:hover {
        background: var(--white);
        color: var(--text) !important;
    }

/* Hamburger */
.nav-toggler {
    display: none;
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    background: var(--white);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1031;
    position: relative;
}

    .nav-toggler span {
        display: block;
        width: 18px;
        height: 1.5px;
        background: var(--text);
        border-radius: 2px;
        transition: var(--transition);
    }

    .nav-toggler.open span:nth-child(1) {
        transform: translateY(6.5px) rotate(45deg);
    }

    .nav-toggler.open span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggler.open span:nth-child(3) {
        transform: translateY(-6.5px) rotate(-45deg);
    }

@media (max-width: 991px) {
    .nav-toggler {
        display: inline-flex;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 4px;
        z-index: 1029;
        padding: 80px 24px 24px;
        border-top: 1px solid var(--border);
    }

        .nav-links.open {
            display: flex;
        }

    .nav-link {
        font-size: 1.15rem !important;
        padding: 14px 28px !important;
        color: var(--text) !important;
        width: 100%;
        text-align: center;
        border-radius: var(--r-sm);
    }

    .nav-cta {
        margin: 16px 0 0;
        width: 100%;
        justify-content: center;
        padding: 14px 28px !important;
        font-size: 1rem !important;
    }
}

/* ── HERO ── */
.hero {
    padding: 72px 0 80px;
    border-bottom: 1px solid var(--border);
    margin-top: var(--header-h);
    overflow: hidden;
}

.hero-content {
    width: 100%;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--subtle);
    margin-bottom: 20px;
}

    .hero-kicker::before {
        content: '';
        display: block;
        width: 28px;
        height: 1px;
        background: var(--border-2);
    }

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    line-height: 1.06;
    letter-spacing: -.8px;
    margin-bottom: 20px;
    color: var(--text);
}

    .hero-title em {
        font-style: italic;
        color: var(--gold);
    }

.hero-subtitle {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.75;
    max-width: 560px;
    margin-bottom: 32px;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.hero-tag-pill {
    display: inline-flex;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid var(--border);
    font-size: 12px;
    color: var(--muted);
    background: var(--white);
    font-family: var(--font-body);
}

/* Hero stat card (dark) */
.hero-stat-card {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 20px 28px;
    background: var(--text);
    color: var(--white);
    border-radius: var(--r-lg);
    margin-top: 2rem;
}

.hero-stat-item {
    text-align: center;
}

.hero-stat-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.hero-stat-label {
    font-size: 11px;
    opacity: .6;
    letter-spacing: .4px;
    margin-top: 4px;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,.12);
}

/* ── BUTTONS ── */
.btn-primary-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    background: var(--text);
    color: var(--white) !important;
    font-weight: 600;
    font-size: 14px;
    border-radius: var(--r-sm);
    border: 1px solid var(--text);
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
    white-space: nowrap;
}

    .btn-primary-gold:hover {
        background: var(--white);
        color: var(--text) !important;
    }

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    background: transparent;
    color: var(--text) !important;
    font-weight: 600;
    font-size: 14px;
    border-radius: var(--r-sm);
    border: 1px solid var(--border-2);
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
}

    .btn-outline-white:hover {
        border-color: var(--text);
    }

.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    background: var(--white);
    color: var(--text) !important;
    font-weight: 600;
    font-size: 14px;
    border-radius: var(--r-sm);
    border: 1px solid var(--white);
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
}

    .btn-white:hover {
        background: var(--off);
        border-color: var(--off);
    }

/* ── MOTTO MARQUEE ── */
.motto-bar {
    background: var(--text);
    padding: 18px 0;
    overflow: hidden;
    width: 100%;
}

.motto-track {
    display: flex;
    align-items: center;
    gap: 32px;
    width: max-content;
    animation: marquee 28s linear infinite;
    white-space: nowrap;
}

.motto-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 14px;
    font-style: italic;
    color: rgba(255,255,255,.75);
    flex-shrink: 0;
}

.motto-dot {
    color: var(--gold) !important;
    font-style: normal !important;
    font-size: 10px !important;
}

.motto-bar:hover .motto-track {
    animation-play-state: paused;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ── SECTIONS ── */
section {
    padding: 80px 0;
}

.section-off {
    background: var(--off);
}

.section-dark {
    background: var(--text);
}

.section-white {
    background: var(--white);
}

/* Section label */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--subtle);
    margin-bottom: 16px;
}

    .section-label::before {
        content: '';
        display: block;
        width: 20px;
        height: 1px;
        background: var(--border-2);
    }

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    line-height: 1.12;
    letter-spacing: -.3px;
    margin-bottom: 12px;
    color: var(--text);
}

    .section-title em {
        font-style: italic;
        color: var(--gold);
    }

.divider-gold {
    width: 48px;
    height: 1px;
    background: var(--gold);
    margin: 1.25rem 0;
}

/* ── SERVICE CARDS ── */
.service-card {
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    background: var(--white);
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: var(--transition);
}

    .service-card:hover {
        border-color: var(--border-2);
        box-shadow: var(--shadow-sm);
        transform: translateY(-2px);
    }

.service-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--border-2);
    flex-shrink: 0;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    color: var(--gold);
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--text);
    margin: 0;
}

.service-card p {
    font-size: .9rem;
    color: var(--muted);
    line-height: 1.75;
    flex: 1;
    margin: 0;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    transition: gap .2s;
    margin-top: auto;
}

    .service-link:hover {
        gap: 10px;
    }

    .service-link i {
        color: var(--gold);
    }

/* ── WHY / NOSYON CARDS ── */
.why-card {
    padding: 24px 20px;
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    background: var(--white);
    height: 100%;
    transition: var(--transition);
}

    .why-card:hover {
        border-color: var(--border-2);
        box-shadow: var(--shadow-sm);
    }

.why-card-num {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--border-2);
    line-height: 1;
    margin-bottom: .75rem;
}

.why-card h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text);
}

.why-card p {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.65;
    margin: 0;
}

/* Why cards on dark bg */
.section-dark .why-card {
    border-color: rgba(255,255,255,.08);
    background: rgba(255,255,255,.03);
}

    .section-dark .why-card:hover {
        border-color: rgba(184,151,126,.35);
        background: rgba(184,151,126,.06);
    }

.section-dark .why-card-num {
    color: rgba(255,255,255,.15);
}

.section-dark .why-card h4 {
    color: var(--white);
}

.section-dark .why-card p {
    color: rgba(255,255,255,.55);
}

/* ── PRINCIPLE LIST ── */
.principle-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 1.25rem;
}

    .principle-list li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        font-size: .9rem;
        color: var(--muted);
    }

        .principle-list li i {
            color: var(--gold);
            margin-top: 3px;
            flex-shrink: 0;
        }

/* ── BOOK BADGE ── */
.book-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold-bg);
    border: 1px solid var(--gold-border);
    padding: 10px 16px;
    border-radius: var(--r-sm);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

    .book-badge:hover {
        border-color: var(--gold);
    }

    .book-badge i {
        color: var(--gold);
        font-size: 1.1rem;
    }

    .book-badge span {
        font-size: .82rem;
        color: var(--text);
        font-weight: 500;
    }

    .book-badge strong {
        color: var(--gold);
    }

/* ── ARTICLE CARDS ── */
.article-card {
    background: var(--white);
    border-radius: var(--r-lg);
    border: 1px solid var(--border);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    overflow: hidden;
}

    .article-card:hover {
        box-shadow: var(--shadow-sm);
        border-color: var(--border-2);
        transform: translateY(-2px);
    }

.article-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-category {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .75rem;
}

.article-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: .75rem;
    color: var(--text);
    line-height: 1.3;
}

.article-card p {
    font-size: .875rem;
    color: var(--muted);
    line-height: 1.7;
    flex: 1;
    margin: 0;
}

.article-meta {
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: .75rem;
    color: var(--subtle);
}

.article-read-more {
    color: var(--text);
    font-weight: 600;
    font-size: .8rem;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: gap .2s;
}

    .article-read-more:hover {
        gap: 8px;
    }

    .article-read-more i {
        color: var(--gold);
    }

/* ── CTA SLAB ── */
.cta-section {
    padding: 0 0 80px;
}

.cta-slab {
    background: var(--text);
    color: var(--white);
    border-radius: var(--r-xl);
    padding: 56px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

    .cta-slab::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 80% 50%, rgba(184,151,126,.08) 0%, transparent 65%);
    }

    .cta-slab h2 {
        font-family: var(--font-display);
        font-size: clamp(1.6rem, 3vw, 2.2rem);
        line-height: 1.15;
        margin-bottom: 10px;
        color: var(--white);
        max-width: 480px;
        position: relative;
    }

        .cta-slab h2 em {
            font-style: italic;
            color: var(--gold);
        }

    .cta-slab p {
        font-size: 15px;
        opacity: .65;
        line-height: 1.7;
        max-width: 440px;
        position: relative;
        margin: 0;
    }

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 0;
    position: relative;
}

@media (max-width: 767px) {
    .cta-slab {
        flex-direction: column;
        padding: 36px 28px;
    }

    .cta-actions {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

/* ── PAGE HEADER ── */
.page-header {
    padding: 64px 0 48px;
    border-bottom: 1px solid var(--border);
    margin-top: var(--header-h);
}

.page-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--subtle);
    margin-bottom: 16px;
}

    .page-kicker::before {
        content: '';
        display: block;
        width: 20px;
        height: 1px;
        background: var(--border-2);
    }

.page-header h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    line-height: 1.08;
    letter-spacing: -.5px;
    margin-bottom: 12px;
    color: var(--text);
}

.page-header p {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.75;
    margin: 0;
}

/* ── CONTACT FORM ── */
.contact-form-wrap {
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 36px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

@media (max-width: 575px) {
    .contact-form-wrap {
        padding: 24px 18px;
    }
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .4px;
    text-transform: uppercase;
    color: var(--subtle);
    margin-bottom: 6px;
}

.form-control {
    width: 100%;
    padding: 12px 14px;
    font: inherit;
    font-size: 14.5px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    color: var(--text);
    outline: none;
    transition: var(--transition);
    box-shadow: none !important;
}

    .form-control:focus {
        border-color: var(--text);
        box-shadow: 0 0 0 3px rgba(17,17,16,.06) !important;
    }

textarea.form-control {
    resize: vertical;
    min-height: 130px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

    .contact-info-item:last-child {
        border-bottom: none;
    }

.contact-info-icon {
    font-size: 15px;
    flex-shrink: 0;
    color: var(--gold);
    margin-top: 2px;
}

.contact-info-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .4px;
    text-transform: uppercase;
    color: var(--subtle);
    margin-bottom: 3px;
}

.contact-info-value {
    font-size: .9rem;
    color: var(--text);
    font-weight: 500;
}

.alert-site {
    padding: 12px 16px;
    border-radius: var(--r-sm);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .875rem;
}

.alert-site-success {
    background: #f0faf5;
    border: 1px solid #86efac;
    color: #166534;
}

.alert-site-error {
    background: #fff5f5;
    border: 1px solid #fca5a5;
    color: #991b1b;
}

/* ── ARTICLE DETAIL ── */
.article-content {
    font-size: 15.5px;
    line-height: 1.85;
    color: var(--muted);
}

    .article-content p {
        margin-bottom: 1.4rem;
    }

    .article-content blockquote {
        border-left: 3px solid var(--gold);
        padding-left: 20px;
        margin: 28px 0;
        font-family: var(--font-display);
        font-style: italic;
        font-size: 18px;
        color: var(--text);
    }

/* ── FOOTER ── */
.sam-footer {
    margin-top: 80px;
    border-top: 1px solid var(--border);
    padding: 48px 0 32px;
    background: var(--white);
    color: var(--muted);
}

.footer-brand {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 10px;
}

.footer-tagline {
    font-size: .875rem;
    line-height: 1.8;
    max-width: 300px;
    color: var(--muted);
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 1.25rem;
}

    .footer-social a {
        width: 34px;
        height: 34px;
        background: var(--off);
        border: 1px solid var(--border);
        border-radius: var(--r-sm);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--muted);
        font-size: .85rem;
        transition: var(--transition);
    }

        .footer-social a:hover {
            background: var(--text);
            border-color: var(--text);
            color: var(--white);
        }

.footer-heading {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-links li {
        margin-bottom: 8px;
    }

    .footer-links a {
        font-size: .875rem;
        color: var(--muted);
        transition: var(--transition);
    }

        .footer-links a:hover {
            color: var(--text);
        }

.footer-contact > div {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .875rem;
    margin-bottom: 8px;
    color: var(--muted);
}

.footer-contact i {
    color: var(--gold);
}

.footer-book-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--gold-bg);
    border: 1px solid var(--gold-border);
    border-radius: var(--r-sm);
    padding: 12px 16px;
    margin-top: 1.25rem;
    transition: var(--transition);
}

    .footer-book-badge:hover {
        border-color: var(--gold);
    }

    .footer-book-badge i {
        color: var(--gold);
        font-size: 1.2rem;
        flex-shrink: 0;
    }

    .footer-book-badge span {
        font-size: .82rem;
        color: var(--text);
    }

    .footer-book-badge strong {
        color: var(--gold);
        font-size: .85rem;
    }

    .footer-book-badge small {
        color: var(--muted);
        font-size: .75rem;
    }

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    font-size: .78rem;
    color: var(--subtle);
}

/* ── LOGIN ── */
.login-wrap {
    min-height: 100vh;
    background: var(--off);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.login-card {
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 48px 44px;
    width: 100%;
    max-width: 420px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.login-logo {
    text-align: center;
    margin-bottom: 2.5rem;
}

.login-logo-icon {
    width: 48px;
    height: 48px;
    background: var(--text);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--white);
    margin: 0 auto 1rem;
}

.login-logo h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--text);
    margin: 0 0 4px;
}

.login-logo p {
    font-size: .8rem;
    color: var(--subtle);
    margin: 0;
}

.btn-login {
    width: 100%;
    padding: 12px;
    background: var(--text);
    color: var(--white);
    font-weight: 600;
    font-size: .9rem;
    border: 1px solid var(--text);
    border-radius: var(--r-sm);
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
}

    .btn-login:hover {
        background: var(--white);
        color: var(--text);
    }

/* ── AOS ── */
[data-aos] {
    pointer-events: none;
}

    [data-aos].aos-animate {
        pointer-events: auto;
    }

/* ── RESPONSIVE ── */
@media (max-width: 767px) {
    section {
        padding: 56px 0;
    }

    .hero {
        padding: 48px 0 56px;
    }

    .hero-actions {
        flex-direction: column;
    }

        .hero-actions > * {
            width: 100%;
            justify-content: center;
        }

    .hero-stat-card {
        flex-wrap: wrap;
        gap: 12px;
    }

    .page-header {
        padding: 48px 0 36px;
    }

    .sam-footer {
        margin-top: 48px;
    }
}

/* Mobile overflow guard */
@media (max-width: 767px) {
    .container-xl {
        width: calc(100% - 28px);
    }

    .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

        .row > * {
            padding-left: 12px !important;
            padding-right: 12px !important;
        }

    section {
        overflow-x: hidden;
    }
}

.motto-bar {
    background: var(--text);
    padding: 18px 0;
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
    display: block; /* display:none kalmasın */
    position: relative;
    z-index: 1;
}

.motto-track {
    display: flex;
    align-items: center;
    gap: 32px;
    width: max-content;
    animation: marquee 28s linear infinite;
    white-space: nowrap;
}

.motto-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 14px;
    font-style: italic;
    color: rgba(255,255,255,.78);
    flex-shrink: 0;
}

.motto-dot {
    color: var(--gold) !important;
    font-style: normal !important;
    font-size: 9px !important;
    flex-shrink: 0;
}

.motto-bar:hover .motto-track {
    animation-play-state: paused;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.cat-filter-btn {
    display: inline-flex;
    align-items: center;
    padding: 7px 16px;
    border-radius: 999px;
    border: 1px solid var(--border-2);
    font-size: 13px;
    font-weight: 500;
    color: var(--muted);
    background: var(--white);
    transition: all .18s;
    text-decoration: none;
}

    .cat-filter-btn:hover {
        border-color: var(--text);
        color: var(--text);
        background: var(--off);
    }

    .cat-filter-btn.active {
        background: var(--text);
        color: var(--white) !important;
        border-color: var(--text);
    }

.btn-cta-book {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    background: transparent;
    color: rgba(255,255,255,.82) !important;
    font-weight: 600;
    font-size: 14px;
    border-radius: var(--r-sm);
    border: 1px solid rgba(255,255,255,.28);
    cursor: pointer;
    transition: all .18s;
    font-family: var(--font-body);
    text-decoration: none;
}

    .btn-cta-book:hover {
        color: var(--white) !important;
        border-color: rgba(255,255,255,.65);
        background: rgba(255,255,255,.06);
    }

.sam-brand {
    display: flex;
    flex-direction: column;
    gap: 1px;
    text-decoration: none;
    color: var(--text);
}

.brand-name {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: .1px;
    color: var(--text);
    line-height: 1.2;
}

.brand-tag {
    font-size: 10.5px;
    color: var(--subtle);
    letter-spacing: .5px;
    font-family: var(--font-body);
    font-weight: 400;
}

@media (max-width: 991px) {

    .nav-toggler {
        display: inline-flex;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100vw;
        height: 100vh;
        background: #ffffff;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 6px;
        z-index: 9999;
        padding: 20px;
        overflow-y: auto;
    }

        .nav-links.open {
            display: flex;
        }

    .nav-toggler {
        position: relative;
        z-index: 10000;
    }

    .nav-links .nav-link {
        font-size: 1.25rem !important;
        font-weight: 600 !important;
        padding: 14px 0 !important;
        color: #111110 !important;
        width: 100%;
        max-width: 300px;
        text-align: center;
        border-radius: 0;
        border-bottom: 1px solid #E8E8E4;
        background: transparent !important;
    }

        .nav-links .nav-link:last-of-type {
            border-bottom: none;
        }

        .nav-links .nav-link.active {
            color: #B8977E !important;
        }

    .nav-links .nav-cta {
        margin-top: 24px !important;
        width: 100% !important;
        max-width: 300px !important;
        justify-content: center !important;
        text-align: center !important;
        padding: 14px 24px !important;
        font-size: 1rem !important;
        display: flex !important;
        background: #111110 !important;
        color: #ffffff !important;
        border-radius: 8px !important;
        border: 1px solid #111110 !important;
    }
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    font-size: .78rem;
    color: var(--subtle);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.book-cross-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    background: var(--white);
    text-decoration: none;
    color: inherit;
    transition: all .2s ease;
    margin-bottom: 10px;
}

    .book-cross-card:hover {
        border-color: var(--border-2);
        box-shadow: var(--shadow-sm);
        transform: translateX(4px);
        color: inherit;
        text-decoration: none;
    }

.book-cross-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--r-sm);
    border: 1px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.book-cross-body {
    flex: 1;
    min-width: 0;
}

.book-cross-badge {
    display: inline-flex;
    align-items: center;
    padding: 2px 10px;
    border-radius: 999px;
    border: 1px solid;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.book-cross-body h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.book-cross-body p {
    font-size: .8rem;
    color: var(--muted);
    line-height: 1.55;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.book-cross-arrow {
    flex-shrink: 0;
    opacity: .5;
    transition: opacity .2s, transform .2s;
}

.book-cross-card:hover .book-cross-arrow {
    opacity: 1;
    transform: translateX(3px);
}
