/* =============================================================
   Tesisat Merkezim — style.css
   Component-based CSS, sıfırdan yazılmış, hiçbir CDN/framework yok
   ============================================================= */

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: 'Inter', sans-serif;
    background: #f9f9f9;
    color: #1a1c1c;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
h1,h2,h3,h4,h5,h6 { font-family: 'Manrope', sans-serif; line-height: 1.2; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul,ol { list-style: none; padding: 0; }
button { font-family: inherit; cursor: pointer; border: 0; background: 0; }
input,textarea,select { font-family: inherit; }

.material-symbols-outlined,
.material-icons {
    font-family: 'Material Symbols Outlined', 'Material Icons' !important;
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -moz-font-feature-settings: 'liga';
    font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    vertical-align: middle;
    overflow: hidden;
    max-width: 1.5em;
}


.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
}
:focus-visible { outline: 3px solid #006e26; outline-offset: 3px; }

/* =============================================================
   DESIGN TOKENS
   ============================================================= */
:root {
    --primary: #000946;
    --primary-light: #041977;
    --primary-text: #7988e4;
    --secondary: #006e26;
    --secondary-light: #65fc7e;
    --bg: #f9f9f9;
    --bg-card: #ffffff;
    --bg-soft: #f3f3f3;
    --text: #1a1c1c;
    --text-soft: #454652;
    --text-mute: #767683;
    --border: #c6c5d4;
    --border-light: #e5e7eb;
    --success: #10b981;
    --error: #ef4444;
    --max-w: 1280px;
    --radius: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-sm: 0.25rem;
    --shadow-sm: 0 1px 3px rgba(0,0,0,.06);
    --shadow: 0 4px 12px rgba(0,0,0,.08);
    --shadow-lg: 0 20px 40px rgba(0,9,70,.12);
    --shadow-xl: 0 25px 50px rgba(0,9,70,.18);
    --nav-h: 5rem;
}

/* =============================================================
   CONTAINER & GENEL
   ============================================================= */
.container, .tm-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-lg { padding: 6rem 0; }

@media (max-width: 768px) {
    .section { padding: 3rem 0; }
    .section-lg { padding: 4rem 0; }
}

/* =============================================================
   NAV
   ============================================================= */
.tm-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--nav-h);
    background: #fff;
    border-bottom: 1px solid #f1f5f9;
    box-shadow: 0 1px 3px rgba(0,0,0,.06);
    z-index: 100;
}
.tm-nav-inner {
    max-width: var(--max-w);
    height: 100%;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.tm-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}
.tm-logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.tm-logo-text {
    font-family: 'Manrope', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.05em;
    color: var(--primary);
    white-space: nowrap;
}
.tm-logo-text span { color: var(--secondary); }

/* Desktop Menü */
.tm-menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.tm-menu > a,
.tm-menu .tm-dropdown-btn {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9375rem;
    padding: 0.5rem 0;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: color .15s;
    background: 0;
    border: 0;
    cursor: pointer;
    white-space: nowrap;
}
.tm-menu > a:hover,
.tm-menu .tm-dropdown-btn:hover { color: var(--secondary); }
.tm-menu .material-symbols-outlined { font-size: 1.1rem; }

.tm-dropdown { position: relative; }
.tm-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid #f1f5f9;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-sm);
    padding: 0.5rem 0;
    min-width: 220px;
    z-index: 50;
}
.tm-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -12px; left: 0; right: 0;
    height: 12px;
}
.tm-dropdown:hover .tm-dropdown-menu,
.tm-dropdown:focus-within .tm-dropdown-menu { display: block; }
.tm-dropdown-menu a {
    display: block;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    color: var(--text);
    transition: background .15s, color .15s;
}
.tm-dropdown-menu a:hover {
    background: var(--bg-soft);
    color: var(--secondary);
}

/* Nav Actions */
.tm-nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.tm-btn-cta {
    background: var(--secondary);
    color: #fff;
    padding: 0.625rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.9375rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform .15s;
}
.tm-btn-cta:hover { transform: scale(1.05); color: #fff; }

/* Hamburger */
.tm-hamburger {
    display: none;
    width: 2.5rem;
    height: 2.5rem;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}
.tm-hamburger .material-symbols-outlined { font-size: 28px; }

/* Mobile menu */
.tm-mobile-menu {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: #fff;
    border-top: 1px solid #f1f5f9;
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
    max-height: calc(100vh - var(--nav-h));
    overflow-y: auto;
    z-index: 99;
}
.tm-mobile-menu.is-open { display: block; }
.tm-mobile-menu-inner { padding: 1rem; display: flex; flex-direction: column; gap: 0.25rem; }
.tm-mobile-menu-inner a {
    padding: 0.875rem 1rem;
    color: var(--primary);
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: background .15s;
}
.tm-mobile-menu-inner a:hover { background: var(--bg-soft); }
.tm-btn-cta-mobile,
.tm-btn-wa-mobile {
    background: var(--secondary);
    color: #fff !important;
    text-align: center;
    margin-top: 0.5rem;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.tm-btn-wa-mobile { background: #25D366 !important; }

@media (max-width: 1023px) {
    .tm-menu { display: none; }
    .tm-hamburger { display: flex; }
    .tm-btn-cta { display: none; }
}

/* =============================================================
   PAGE BODY (nav altı boşluk)
   ============================================================= */
#tm-main { padding-top: var(--nav-h); }

/* =============================================================
   HERO SLIDER (ANA SAYFA)
   ============================================================= */
.tm-hero {
    position: relative;
    height: calc(100vh - var(--nav-h));
    min-height: 600px;
    overflow: hidden;
}
.tm-slider {
    position: absolute;
    inset: 0;
    display: flex;
    transition: transform .7s cubic-bezier(.4,0,.2,1);
}
.tm-slide {
    min-width: 100%;
    height: 100%;
    flex-shrink: 0;
    position: relative;
}
.tm-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.tm-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,9,70,.85), rgba(0,9,70,.4) 60%, transparent);
}
.tm-hero-content {
    position: relative;
    z-index: 10;
    max-width: var(--max-w);
    margin: 0 auto;
    height: 100%;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
}
.tm-hero-card {
    background: rgba(255,255,255,.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 3rem;
    max-width: 42rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-xl);
}
.tm-hero-badge {
    color: var(--secondary);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    display: block;
}
.tm-hero-card h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1.5rem;
    letter-spacing: -0.04em;
    line-height: 1.05;
}
.tm-hero-card h1 span { color: var(--secondary); }
.tm-hero-card p {
    color: var(--text-soft);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}
.tm-hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
@media (max-width: 768px) {
    .tm-hero-card { padding: 1.5rem; }
}

.tm-slider-dots {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    gap: 0.75rem;
}
.tm-slider-dots button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,.4);
    transition: all .3s;
    cursor: pointer;
}
.tm-slider-dots button.active {
    background: #fff;
    transform: scale(1.3);
}

/* =============================================================
   BUTTONS
   ============================================================= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all .15s;
    text-decoration: none;
    white-space: nowrap;
    border: 2px solid transparent;
}
.btn-primary {
    background: var(--secondary);
    color: #fff;
}
.btn-primary:hover {
    transform: translateY(-2px);
    color: #fff;
    background: var(--primary);
}
.btn-outline {
    border-color: var(--primary);
    color: var(--primary);
    background: transparent;
}
.btn-outline:hover {
    background: var(--primary);
    color: #fff;
}
.btn-outline-white {
    border-color: #fff;
    color: #fff;
}
.btn-outline-white:hover {
    background: #fff;
    color: var(--primary);
}
.btn-lg { padding: 1.125rem 2.5rem; font-size: 1.0625rem; }
.btn-sm { padding: 0.625rem 1.25rem; font-size: 0.875rem; }

/* =============================================================
   GRID & LAYOUT
   ============================================================= */
.grid { display: grid; gap: 2rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-6 { grid-template-columns: repeat(6, 1fr); }
@media (max-width: 1023px) { .grid-3, .grid-4, .grid-6 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4, .grid-6 { grid-template-columns: 1fr; } }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.text-center { text-align: center; }

/* =============================================================
   SECTION HEADINGS
   ============================================================= */
.section-head { margin-bottom: 3rem; text-align: center; }
.section-head h2 {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}
.section-head p {
    color: var(--text-soft);
    max-width: 56rem;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* =============================================================
   TOP SERVICES (3 büyük kart)
   ============================================================= */
.tm-services-top {
    background: var(--primary);
    padding: 4rem 0;
}
.tm-service-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform .3s;
}
.tm-service-card:hover { transform: translateY(-8px); }
.tm-service-card img { width: 100%; height: 12rem; object-fit: cover; }
.tm-service-card-body { padding: 2rem; text-align: center; }
.tm-service-card-body h3 {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 1rem;
}
.tm-service-card-body p {
    color: var(--text-soft);
    font-size: 0.875rem;
}

/* =============================================================
   SOLUTION (image + text 2 col)
   ============================================================= */
.tm-solution {
    background: #fff;
    padding: 6rem 0;
}
.tm-solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
@media (max-width: 768px) {
    .tm-solution-grid { grid-template-columns: 1fr; gap: 2rem; }
}
.tm-solution-img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-xl);
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}
.tm-solution h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 1.5rem;
    line-height: 1.15;
}
.tm-solution p {
    color: var(--text-soft);
    font-size: 1.05rem;
    line-height: 1.75;
}
.tm-solution-badges {
    display: flex;
    gap: 1.25rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}
.tm-solution-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary);
    font-weight: 700;
}

/* =============================================================
   SERVICES GRID
   ============================================================= */
.tm-hizmetler {
    background: var(--bg-soft);
    padding: 6rem 0;
}
.tm-hiz-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: box-shadow .3s;
    display: flex;
    flex-direction: column;
}
.tm-hiz-card:hover { box-shadow: var(--shadow-lg); }
.tm-hiz-card img { width: 100%; height: 13rem; object-fit: cover; }
.tm-hiz-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.tm-hiz-card-icon {
    color: var(--secondary);
    font-size: 2rem;
    margin-bottom: 0.75rem;
}
.tm-hiz-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.75rem;
}
.tm-hiz-card p {
    color: var(--text-soft);
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
    flex: 1;
}
.tm-hiz-card-link {
    color: var(--secondary);
    font-size: 0.875rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap .2s;
}
.tm-hiz-card:hover .tm-hiz-card-link { gap: 0.75rem; }

/* =============================================================
   NEDEN BİZ
   ============================================================= */
.tm-neden {
    background: #fff;
    padding: 6rem 0;
    overflow: hidden;
}
.tm-neden-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
@media (max-width: 768px) { .tm-neden-grid { grid-template-columns: 1fr; gap: 2rem; } }

.tm-neden h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 1rem;
}
.tm-neden-subtitle {
    color: var(--secondary);
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
}
.tm-neden-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
@media (max-width: 480px) { .tm-neden-cards { grid-template-columns: 1fr; } }
.tm-neden-card {
    background: var(--bg-soft);
    padding: 1.5rem;
    border-radius: var(--radius);
    border: 1px solid #f1f5f9;
}
.tm-neden-icon-wrap {
    width: 3rem;
    height: 3rem;
    background: rgba(0,110,38,.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--secondary);
}
.tm-neden-card h4 {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}
.tm-neden-card p {
    font-size: 0.825rem;
    color: var(--text-soft);
    line-height: 1.6;
}
.tm-neden-img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    width: 100%;
    height: 32rem;
    object-fit: cover;
}

/* =============================================================
   GLOBAL CTA
   ============================================================= */
.tm-cta {
    background: var(--primary);
    color: #fff;
    padding: 5rem 0;
    text-align: center;
}
.tm-cta h2 {
    font-size: clamp(1.5rem, 2.75vw, 2.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.25;
    color: #fff;
}
.tm-cta p {
    color: var(--primary-text);
    font-size: 1.05rem;
    max-width: 48rem;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

/* =============================================================
   FAQ ACCORDION
   ============================================================= */
.tm-faq-wrap {
    background: #fff;
    padding: 6rem 0;
}
.tm-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}
@media (max-width: 768px) { .tm-faq-grid { grid-template-columns: 1fr; gap: 2rem; } }
.tm-faq-img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-xl);
    width: 100%;
    height: 28rem;
    object-fit: cover;
}
.tm-faq-list { display: flex; flex-direction: column; gap: 1rem; }
.tm-faq-item {
    background: var(--bg-soft);
    border-radius: var(--radius);
    padding: 1.5rem;
    cursor: pointer;
}
.tm-faq-item summary {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    color: var(--primary);
    gap: 1rem;
}
.tm-faq-item summary::-webkit-details-marker { display: none; }
.tm-faq-item summary .tm-faq-icon {
    transition: transform .3s;
    flex-shrink: 0;
    color: var(--secondary);
}
.tm-faq-item[open] summary .tm-faq-icon { transform: rotate(180deg); }
.tm-faq-answer {
    margin-top: 1rem;
    color: var(--text-soft);
    line-height: 1.65;
}

/* =============================================================
   BÖLGELER (regions)
   ============================================================= */
.tm-bolgeler {
    background: var(--bg-soft);
    padding: 6rem 0;
}
.tm-bolge-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
}
@media (max-width: 1023px) { .tm-bolge-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 640px) { .tm-bolge-grid { grid-template-columns: repeat(2, 1fr); } }
.tm-bolge-item {
    background: #fff;
    padding: 0.875rem;
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--secondary);
    box-shadow: var(--shadow-sm);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text);
}

/* =============================================================
   BLOG
   ============================================================= */
.tm-blog-section {
    background: #fff;
    padding: 6rem 0;
}
.tm-blog-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid #f1f5f9;
    box-shadow: var(--shadow-sm);
    transition: box-shadow .2s;
}
.tm-blog-card:hover { box-shadow: var(--shadow); }
.tm-blog-card img { width: 100%; height: 12rem; object-fit: cover; }
.tm-blog-card-body { padding: 1.5rem; }
.tm-blog-cat {
    color: var(--secondary);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
    display: block;
}
.tm-blog-card h3 {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}
.tm-blog-card p {
    color: var(--text-soft);
    font-size: 0.875rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}
.tm-blog-card-link {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}
.tm-blog-card-link:hover { color: var(--secondary); }

/* =============================================================
   İLETİŞİM
   ============================================================= */
.tm-iletisim {
    background: var(--bg);
    padding: 6rem 0;
}
.tm-iletisim-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}
@media (max-width: 768px) { .tm-iletisim-grid { grid-template-columns: 1fr; } }
.tm-form-wrap {
    background: #fff;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid #f1f5f9;
}
.tm-form-wrap h2 {
    font-size: 1.875rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 2rem;
}
.tm-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}
@media (max-width: 640px) { .tm-form-row { grid-template-columns: 1fr; } }
.tm-form-group { margin-bottom: 1.25rem; }
.tm-form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}
.tm-form-group input,
.tm-form-group select,
.tm-form-group textarea {
    width: 100%;
    background: var(--bg-soft);
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    padding: 0.75rem;
    font-size: 0.9375rem;
    color: var(--text);
    outline: none;
    transition: box-shadow .2s, background .2s;
}
.tm-form-group input:focus,
.tm-form-group select:focus,
.tm-form-group textarea:focus {
    background: #fff;
    box-shadow: 0 0 0 2px var(--secondary);
}
.tm-form-group textarea { resize: vertical; min-height: 7rem; }
.tm-form-submit {
    width: 100%;
    background: var(--secondary);
    color: #fff;
    font-family: 'Manrope', sans-serif;
    font-weight: 900;
    font-size: 1rem;
    padding: 1rem;
    border-radius: var(--radius-sm);
    border: 0;
    cursor: pointer;
    transition: opacity .2s;
    margin-top: 0.5rem;
}
.tm-form-submit:hover { opacity: 0.9; }
.tm-form-msg {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
    display: none;
}
.tm-form-msg.success {
    background: #d1fae5;
    color: #065f46;
    display: block;
}
.tm-form-msg.error {
    background: #fee2e2;
    color: #991b1b;
    display: block;
}

.tm-map-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid #fff;
    height: 100%;
    min-height: 24rem;
}
.tm-map-wrap iframe { width: 100%; height: 100%; min-height: 24rem; border: 0; }

/* =============================================================
   PAGE HERO (alt sayfalar için)
   ============================================================= */
.tm-page-hero {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    padding: 5rem 0 4rem;
    position: relative;
    overflow: hidden;
}
.tm-page-hero::before {
    content: '';
    position: absolute;
    right: -8rem; top: -8rem;
    width: 32rem; height: 32rem;
    border-radius: 50%;
    background: rgba(255,255,255,.04);
}
.tm-page-hero .container { position: relative; z-index: 1; }
.tm-page-hero h1 {
    font-size: clamp(2.25rem, 4vw, 3.5rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
}
.tm-page-hero p {
    color: rgba(255,255,255,.85);
    max-width: 48rem;
    font-size: 1.05rem;
    line-height: 1.65;
}
.tm-page-hero .breadcrumb {
    margin-bottom: 1.5rem;
}

/* =============================================================
   BREADCRUMB
   ============================================================= */
.breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: rgba(255,255,255,.7);
}
.breadcrumb a {
    color: rgba(255,255,255,.7);
    transition: color .15s;
}
.breadcrumb a:hover { color: #fff; }
.breadcrumb .sep { margin: 0 0.5rem; opacity: 0.5; }
.breadcrumb [aria-current="page"] { color: #fff; font-weight: 600; }

/* =============================================================
   ENTRY CONTENT (page/post body)
   ============================================================= */
.entry-content {
    max-width: 56rem;
    margin: 0 auto;
    padding: 4rem 1.5rem;
    color: var(--text-soft);
    line-height: 1.75;
    font-size: 1.0625rem;
}
.entry-content h2 {
    color: var(--primary);
    font-size: 1.875rem;
    font-weight: 800;
    margin: 2.5rem 0 1rem;
    letter-spacing: -0.02em;
}
.entry-content h3 {
    color: var(--primary);
    font-size: 1.375rem;
    font-weight: 700;
    margin: 2rem 0 0.75rem;
}
.entry-content p { margin-bottom: 1.25rem; }
.entry-content ul, .entry-content ol {
    margin: 0 0 1.25rem 1.5rem;
}
.entry-content ul { list-style: disc; }
.entry-content ol { list-style: decimal; }
.entry-content li { margin-bottom: 0.5rem; }
.entry-content img {
    border-radius: var(--radius);
    margin: 1.5rem 0;
    box-shadow: var(--shadow);
}
.entry-content a {
    color: var(--secondary);
    text-decoration: underline;
}
.entry-content a:hover { color: var(--primary); }
.entry-content strong { color: var(--primary); font-weight: 700; }
.entry-content blockquote {
    border-left: 4px solid var(--secondary);
    padding: 1rem 1.5rem;
    background: var(--bg-soft);
    border-radius: 0 var(--radius) var(--radius) 0;
    margin: 1.5rem 0;
    font-style: italic;
    color: var(--primary);
}

/* =============================================================
   FOOTER
   ============================================================= */
.tm-footer {
    background: #1e3a8a;
    color: #fff;
}
.tm-footer-top {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 4rem 1.5rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
@media (max-width: 1023px) { .tm-footer-top { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .tm-footer-top { grid-template-columns: 1fr; } }

.tm-footer-col h3 { font-size: 1.5rem; font-weight: 900; }
.tm-footer-col h4 {
    color: var(--secondary-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}
.tm-footer-col p { color: #94a3b8; font-size: 0.875rem; line-height: 1.65; }
.tm-footer-col ul li { margin-bottom: 0.75rem; }
.tm-footer-col ul li a {
    color: #cbd5e1;
    font-size: 0.875rem;
    transition: color .2s, transform .2s;
    display: inline-block;
}
.tm-footer-col ul li a:hover { color: #fff; transform: translateX(4px); }

.tm-footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}
.tm-footer-logo-icon {
    width: 2rem;
    height: 2rem;
    background: rgba(255,255,255,.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-light);
}

.tm-footer-contact {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    color: #cbd5e1 !important;
}
.tm-footer-contact .material-symbols-outlined { color: var(--secondary-light); flex-shrink: 0; }
.tm-footer-contact a { color: #cbd5e1; }
.tm-footer-contact a:hover { color: #fff; }

.tm-footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.75rem;
    color: #94a3b8;
    flex-wrap: wrap;
}
.tm-footer-bottom a { color: #94a3b8; margin-left: 0.75rem; }
.tm-footer-bottom a:hover { color: #fff; }

/* =============================================================
   WHATSAPP FAB
   ============================================================= */
.tm-whatsapp-fab {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 3.5rem;
    height: 3.5rem;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0,0,0,.2);
    z-index: 110;
    transition: transform .2s;
}
.tm-whatsapp-fab:hover { transform: scale(1.1); color: #fff; }
.tm-whatsapp-fab svg { width: 1.875rem; height: 1.875rem; }

/* =============================================================
   PAGINATION
   ============================================================= */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2.5rem;
}
.pagination a, .pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--radius-sm);
    background: var(--bg-soft);
    color: var(--primary);
    font-weight: 600;
    transition: all .2s;
}
.pagination a:hover, .pagination .current {
    background: var(--primary);
    color: #fff;
}

/* =============================================================
   404
   ============================================================= */
.tm-404 {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 1.5rem;
}
.tm-404 h1 {
    font-size: 8rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}
.tm-404 h2 {
    font-size: 2rem;
    color: var(--primary);
    margin: 1rem 0;
}
.tm-404 p { color: var(--text-soft); margin-bottom: 2rem; }

/* =============================================================
   UTIL HELPERS
   ============================================================= */
.bg-white { background: #fff; }
.bg-soft { background: var(--bg-soft); }
.bg-primary { background: var(--primary); color: #fff; }
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }
.shadow { box-shadow: var(--shadow); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.rounded { border-radius: var(--radius); }
.rounded-lg { border-radius: var(--radius-lg); }

/* =============================================================
   HERO CARD ANIMATION (slayt geçişlerinde fade)
   ============================================================= */
@keyframes tm-fade-in {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}
.tm-hero-card.is-anim {
    animation: tm-fade-in 0.6s ease-out;
}

/* =============================================================
   FOOTER CREDIT (Tasarım & Yazılım)
   ============================================================= */
.tm-footer-credit {
    color: rgba(255,255,255,0.5) !important;
    font-size: 0.75rem;
    margin-top: 0.5rem;
}
.tm-footer-credit a {
    color: rgba(255,255,255,0.7);
    transition: color 0.2s;
    text-decoration: none;
    border-bottom: 1px dashed rgba(255,255,255,0.3);
    padding-bottom: 1px;
}
.tm-footer-credit a:hover {
    color: #65fc7e;
    border-bottom-color: #65fc7e;
}
.tm-footer-credit strong {
    font-weight: 600;
}
