@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500&display=swap');

/* ==========================================================================
   PAPSEF – Ultra Profesyonel Stil Sistemi
   ==========================================================================
   1. Design tokens (renk, tipografi, boşluk, gölge)
   2. Reset & base
   3. Layout (container, grid)
   4. Header & navigation
   5. Footer
   6. Hero & slider
   7. Bileşenler (butonlar, kartlar, form, modal)
   8. Sayfa bölümleri (stats, about, services, why-us, referanslar, cta)
   9. Admin & login
   10. Kurumsal ana sayfa (page-home)
   11. Responsive
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DESIGN TOKENS
   -------------------------------------------------------------------------- */
:root {
    /* Renk paleti */
    --color-primary:       #1a1a1a;
    --color-primary-alt:   #2d2d2d;
    --color-accent:        #FFD700;
    --color-accent-hover:  #e6c200;
    --color-accent-light:  #ffe44d;
    --color-text:          #333;
    --color-text-muted:    #666;
    --color-text-inverse:  #f5f5f5;
    --color-bg:            #fff;
    --color-bg-subtle:     #f9f9f9;
    --color-bg-muted:      #f5f5f5;
    --color-border:        #ddd;
    --color-overlay:       rgba(0, 0, 0, 0.6);

    /* Uyumluluk için eski isimler */
    --primary-black:       var(--color-primary);
    --primary-yellow:      var(--color-accent);
    --secondary-black:    var(--color-primary-alt);
    --text-light:          var(--color-text-inverse);
    --text-dark:           var(--color-text);

    /* Tipografi */
    --font-sans:           'Plus Jakarta Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-size-xs:        0.75rem;
    --font-size-sm:        0.875rem;
    --font-size-base:      1rem;
    --font-size-lg:        1.125rem;
    --font-size-xl:        1.25rem;
    --font-size-2xl:       1.5rem;
    --font-size-3xl:       2rem;
    --font-size-4xl:       2.5rem;
    --font-weight-normal:  400;
    --font-weight-medium:  500;
    --font-weight-semibold: 600;
    --font-weight-bold:   700;
    --font-weight-extrabold: 800;
    --line-height-tight:   1.25;
    --line-height-normal:  1.5;
    --line-height-relaxed: 1.65;

    /* Boşluk ölçeği (4px taban) */
    --space-1:             0.25rem;   /* 4px */
    --space-2:             0.5rem;   /* 8px */
    --space-3:             0.75rem;   /* 12px */
    --space-4:             1rem;      /* 16px */
    --space-5:             1.25rem;   /* 20px */
    --space-6:             1.5rem;   /* 24px */
    --space-8:             2rem;      /* 32px */
    --space-10:            2.5rem;    /* 40px */
    --space-12:            3rem;     /* 48px */
    --space-16:            4rem;     /* 64px */
    --space-20:            5rem;     /* 80px */
    --space-24:            6rem;      /* 96px */

    /* Köşe yuvarlama */
    --radius-sm:           4px;
    --radius-md:           6px;
    --radius-lg:           8px;
    --radius-xl:           10px;
    --radius-2xl:          12px;
    --radius-full:         50px;

    /* Gölge */
    --shadow-sm:           0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow:              0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-md:           0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg:           0 8px 20px rgba(0, 0, 0, 0.12);
    --shadow-xl:           0 20px 40px rgba(0, 0, 0, 0.15);
    --shadow-accent:       0 4px 12px rgba(255, 215, 0, 0.35);

    /* Geçiş */
    --transition:          all 0.3s ease;
    --transition-fast:     all 0.15s ease;

    /* Z-index katmanları */
    --z-dropdown:           100;
    --z-sticky:             1000;
    --z-modal:              9999;
}

/* --------------------------------------------------------------------------
   2. RESET & BASE
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: var(--font-size-base);
    line-height: var(--line-height-normal);
    color: var(--color-text);
    background: var(--color-bg);
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
}

a {
    color: inherit;
    text-decoration: none;
}

/* --------------------------------------------------------------------------
   3. LAYOUT
   -------------------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--space-5);
    padding-right: var(--space-5);
}

/* --------------------------------------------------------------------------
   4. HEADER & NAVİGASYON
   -------------------------------------------------------------------------- */
header {
    background: var(--color-primary);
    color: var(--text-light);
    padding: var(--space-4) 0;
    position: sticky;
    top: 0;
    z-index: var(--z-sticky);
    box-shadow: var(--shadow);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-yellow);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo span {
    color: var(--text-light);
}

.logo-img {
    height: 52px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    display: block;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

nav a:hover,
nav a.active {
    color: var(--primary-yellow);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-yellow);
    transition: var(--transition);
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: none;
    background: transparent;
    color: var(--text-dark);
    font-size: 1.25rem;
    cursor: pointer;
    border-radius: var(--radius-md);
    transition: var(--transition);
}
.mobile-menu-btn:hover {
    background: var(--color-bg-subtle);
    color: var(--color-primary);
}
.mobile-menu-btn .mobile-menu-icon-close {
    display: none;
}
.mobile-menu-btn.is-open .mobile-menu-icon-open {
    display: none;
}
.mobile-menu-btn.is-open .mobile-menu-icon-close {
    display: block;
}

/* ===== HEADER ULTRA PROFESYONEL (header-pro) ===== */
.site-header.header-pro {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    color: var(--primary-black);
    padding: 0;
    box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}

.header-pro .header-top {
    background: var(--primary-black);
    color: var(--text-light);
    font-size: 0.8125rem;
    padding: 0.4rem 0;
}

.header-pro .header-top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-pro .header-contact-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.header-pro .header-top-link {
    color: rgba(255,255,255,0.88);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: var(--transition);
}

.header-pro .header-top-link:hover {
    color: var(--primary-yellow);
}

.header-pro .header-top-link i {
    font-size: 0.75rem;
    opacity: 0.9;
}

.header-pro .header-social-top {
    display: flex;
    gap: 0.75rem;
}

.header-pro .header-social-top a {
    color: rgba(255,255,255,0.8);
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: var(--transition);
}

.header-pro .header-social-top a:hover {
    color: var(--primary-yellow);
    background: rgba(255,255,255,0.08);
}

.header-pro .header-main {
    padding: 0.85rem 0;
    background: #fff;
}

.header-pro .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.header-pro .logo-pro {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-black);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.header-pro .logo-pro .logo-img {
    height: 72px;
    max-width: 280px;
    object-fit: contain;
}

.header-pro .logo-pro .logo-text {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary-black);
    letter-spacing: 0.02em;
    line-height: 1.2;
    white-space: nowrap;
}

.header-pro .logo-pro .logo-text-accent {
    font-weight: 700;
    color: var(--color-primary);
    font-style: italic;
}

.header-pro .logo-pro i {
    color: var(--primary-yellow);
}

.header-pro .logo-pro span:not(.logo-text):not(.logo-text-accent) {
    color: var(--primary-black);
}

.header-pro .nav-pro ul {
    display: flex;
    list-style: none;
    gap: 0.1rem;
}

.header-pro .nav-pro a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: var(--transition);
}

.header-pro .nav-pro a:hover,
.header-pro .nav-pro a.active {
    color: var(--primary-yellow);
    background: rgba(255, 215, 0, 0.08);
}

.header-pro .nav-pro a::after {
    display: none;
}

.header-pro .nav-pro a i {
    display: none;
}

.header-pro .header-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    background: var(--primary-yellow);
    color: var(--primary-black);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition);
    white-space: nowrap;
}

.header-pro .header-cta-btn:hover {
    background: #e6c200;
    color: var(--primary-black);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.35);
}

/* --------------------------------------------------------------------------
   FOOTER ULTRA PROFESYONEL (footer-pro)
   -------------------------------------------------------------------------- */
.site-footer.footer-pro {
    background: var(--primary-black);
    color: var(--text-light);
    padding: 0;
}

.footer-pro .footer-main {
    padding: 3.5rem 0 2.5rem;
}

.footer-pro .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 3rem;
    align-items: start;
}

.footer-pro .footer-brand .footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    text-decoration: none;
    color: inherit;
}

.footer-pro .footer-brand .footer-logo .logo-img {
    height: 72px;
    max-width: 280px;
    object-fit: contain;
}

.footer-pro .footer-logo .logo-text {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.02em;
    line-height: 1.2;
}

.footer-pro .footer-logo .logo-text-accent {
    font-weight: 700;
    font-style: italic;
    color: var(--primary-yellow);
}

.footer-pro .footer-logo i.fa-utensils {
    color: var(--primary-yellow);
    font-size: 1.5rem;
}

.footer-pro .footer-desc {
    font-size: 0.9rem;
    line-height: 1.65;
    color: rgba(255,255,255,0.82);
    margin-bottom: 1.25rem;
    max-width: 320px;
}

.footer-pro .footer-social {
    display: flex;
    gap: 0.6rem;
}

.footer-pro .footer-social a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.08);
    color: var(--text-light);
    border-radius: 8px;
    transition: var(--transition);
}

.footer-pro .footer-social a:hover {
    background: var(--primary-yellow);
    color: var(--primary-black);
    transform: translateY(-2px);
}

.footer-pro .footer-links h4,
.footer-pro .footer-contact h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.25rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.footer-pro .footer-links ul,
.footer-pro .footer-contact ul {
    list-style: none;
}

.footer-pro .footer-links li,
.footer-pro .footer-contact li {
    margin-bottom: 0.65rem;
}

.footer-pro .footer-links a {
    color: rgba(255,255,255,0.82);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-pro .footer-links a:hover {
    color: var(--primary-yellow);
    padding-left: 4px;
}

.footer-pro .footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.88);
}

.footer-pro .footer-contact li i {
    color: var(--primary-yellow);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.footer-pro .footer-contact a {
    color: rgba(255,255,255,0.88);
    text-decoration: none;
    transition: var(--transition);
}

.footer-pro .footer-contact a:hover {
    color: var(--primary-yellow);
}

.footer-pro .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 1.25rem 0;
}

.footer-pro .footer-bottom-inner {
    text-align: center;
}

.footer-pro .footer-bottom p {
    margin: 0;
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.6);
}

.footer-pro .footer-bottom .footer-credit {
    margin-top: 0.5rem;
    font-size: 0.625rem;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.02em;
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-black) 100%);
    color: var(--text-light);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-pro {
    padding: 120px 0 100px;
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h100v100H0z" fill="none"/><path d="M50 10l5 15h16l-13 10 5 15-13-10-13 10 5-15-13-10h16z" fill="%23FFD700" opacity="0.06"/></svg>');
    opacity: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h100v100H0z" fill="none"/><path d="M50 10l5 15h16l-13 10 5 15-13-10-13 10 5-15-13-10h16z" fill="%23FFD700" opacity="0.05"/></svg>');
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--primary-yellow);
    margin-bottom: 1rem;
    padding: 0.4rem 1rem;
    border: 1px solid rgba(255,215,0,0.4);
    border-radius: 50px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.hero-pro .hero h1 {
    font-size: clamp(2rem, 5vw, 3.8rem);
    margin-bottom: 1.25rem;
}

.hero .highlight {
    color: var(--primary-yellow);
    position: relative;
}

.hero-desc {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    opacity: 0.92;
    line-height: 1.7;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
    animation: bounce 2s infinite;
}

.scroll-indicator:hover {
    color: var(--primary-yellow);
    border-color: var(--primary-yellow);
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-yellow);
    color: var(--primary-black);
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: var(--transition);
    border: 2px solid var(--primary-yellow);
}

.btn:hover {
    background: transparent;
    color: var(--primary-yellow);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
    margin-left: 1rem;
}

.btn-outline:hover {
    background: var(--text-light);
    color: var(--primary-black);
}

.btn-primary {
    background: var(--primary-yellow);
    color: var(--primary-black);
    border-color: var(--primary-yellow);
}

.btn-primary:hover {
    background: #ffe44d;
    color: var(--primary-black);
    border-color: #ffe44d;
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid rgba(255,255,255,0.6);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    color: var(--text-light);
    border-color: var(--text-light);
}

.btn-light {
    background: #fff;
    color: var(--primary-black);
    border-color: #fff;
}

.btn-light:hover {
    background: #f0f0f0;
    color: var(--primary-black);
    border-color: #f0f0f0;
}

/* --------------------------------------------------------------------------
   İSTATİSTİK BANDI
   -------------------------------------------------------------------------- */
.stats-bar {
    background: var(--primary-black);
    color: var(--text-light);
    padding: 2.5rem 0;
    margin-top: -1px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 0 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-yellow);
    display: block;
    line-height: 1.2;
}

.stat-suffix {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-yellow);
}

.stat-label {
    display: block;
    font-size: 0.95rem;
    opacity: 0.9;
    margin-top: 0.25rem;
}

/* ===== HİZMETLER SECTION ===== */
.services {
    padding: 80px 0;
    background: #f9f9f9;
}

.section-pro {
    padding: 90px 0;
}

.section-pro.services {
    background: #f5f5f5;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-badge {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary-yellow);
    margin-bottom: 0.5rem;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-black);
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
    font-weight: 800;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-yellow);
}

.section-desc {
    color: #666;
    font-size: 1.1rem;
    max-width: 520px;
    margin: 0.5rem auto 0;
}

.section-title p {
    color: #666;
    font-size: 1.1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    border-top: 3px solid var(--primary-yellow);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-yellow);
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--primary-black);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1rem;
    color: var(--primary-yellow);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--primary-black);
    gap: 0.6rem;
}

.service-link i {
    font-size: 0.85em;
    transition: var(--transition);
}

.services-empty {
    text-align: center;
    padding: 3rem 1rem;
}

.services-empty .section-desc {
    margin: 0 auto;
}

.services-empty a {
    color: var(--color-accent);
    font-weight: 600;
    text-decoration: none;
}

.services-empty a:hover {
    text-decoration: underline;
}

/* ===== HAKKIMIZDA SECTION ===== */
.about {
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text .section-badge {
    color: var(--primary-yellow);
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--primary-black);
    margin-bottom: 1rem;
    font-weight: 800;
}

.about-lead {
    font-size: 1.15rem;
    color: var(--secondary-black);
    font-weight: 500;
    margin-bottom: 1rem;
}

.about-text p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.about-features {
    list-style: none;
    margin-top: 2rem;
}

.about-features li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-features li i {
    color: var(--primary-yellow);
    flex-shrink: 0;
    font-size: 0.9rem;
}

.about-visual {
    position: relative;
}

.about-image {
    position: relative;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    background: linear-gradient(145deg, var(--primary-black) 0%, var(--secondary-black) 100%);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-image:not(:has(img)) {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-yellow);
    font-size: 5rem;
}

/* ===== CTA BAND ===== */
.cta-band {
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-black) 100%);
    color: var(--text-light);
    padding: 4rem 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.cta-content p {
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.cta-content .btn + .btn {
    margin-left: 0.75rem;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

/* ===== İÇ SAYFA HERO (hero-page) – Kurumsal, küçük, yıldızsız ===== */
.hero-page {
    padding: 2rem 0 2.25rem;
    min-height: 0;
    background: linear-gradient(180deg, #1f1f1f 0%, #2a2a2a 100%);
}

.hero-page .hero-bg {
    display: none;
}

.hero-page::before {
    display: none;
}

.hero-page .hero-content {
    text-align: center;
}

.hero-page .hero-badge {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    padding: 0.3rem 0.75rem;
    margin-bottom: 0.5rem;
}

.hero-page h1 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.hero-page .hero-desc {
    font-size: 0.9375rem;
    margin-bottom: 0;
    opacity: 0.9;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-bottom: 0.5rem;
    font-size: 0.8125rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--color-accent);
}

.breadcrumb-sep {
    color: rgba(255, 255, 255, 0.45);
    pointer-events: none;
}

.breadcrumb [aria-current="page"] {
    color: var(--color-accent);
    font-weight: 600;
}

/* Misyon & Vizyon */
.mission-vision {
    background: #fff;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.mv-card {
    background: #f9f9f9;
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    border-top: 4px solid var(--color-accent);
    transition: var(--transition);
}

.mv-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.mv-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-alt) 100%);
    color: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
}

.mv-title {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-weight: 700;
}

.mv-text {
    color: #555;
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

/* Değerler grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.value-card {
    background: #fff;
    padding: 2rem 1.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-left: 4px solid var(--color-accent);
}

.value-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.value-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    background: var(--color-primary);
    color: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
}

.value-title {
    font-size: 1.125rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.value-text {
    color: #666;
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
}

/* ===== İLETİŞİM FORMU ===== */
.contact {
    padding: 80px 0;
    background: #f9f9f9;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    background: var(--primary-black);
    color: var(--text-light);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--color-accent);
}

.contact-info h3 {
    color: var(--primary-yellow);
    margin-bottom: 1.5rem;
}

.contact-info-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-item:last-of-type {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-item-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.15);
    color: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.contact-item-body {
    flex: 1;
    min-width: 0;
}

.contact-item-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 0.25rem;
}

.contact-item-value {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.5;
    opacity: 0.95;
}

.contact-item i {
    color: inherit;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-black);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-yellow);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-info-title,
.contact-form-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 1.25rem;
}

.contact-info .contact-info-title {
    color: var(--color-accent);
}

.contact-social-block {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-social-block .contact-item-label {
    margin-bottom: 0.5rem;
}

.contact-social-links {
    display: flex;
    gap: 0.75rem;
}

.contact-social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.contact-social-links a:hover {
    background: var(--color-accent);
    color: var(--primary-black);
}

.contact-item-value a {
    color: inherit;
    text-decoration: none;
}

.contact-item-value a:hover {
    color: var(--color-accent);
    text-decoration: underline;
}

.form-group .required {
    color: #c00;
}

/* ===== İLETİŞİM SAYFASI (page-contact) – kurumsal küçük yazılar ===== */
.page-contact .contact.section-pro {
    padding: 3rem 0;
}

.page-contact .contact-content {
    gap: 2rem;
}

.page-contact .contact-info {
    padding: 1.5rem;
}

.page-contact .contact-info-title,
.page-contact .contact-form-title {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.page-contact .contact-item {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
}

.page-contact .contact-item-icon {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
}

.page-contact .contact-item-label {
    font-size: 0.7rem;
}

.page-contact .contact-item-value {
    font-size: 0.875rem;
}

.page-contact .contact-form-wrap {
    background: #fff;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.page-contact .form-group {
    margin-bottom: 1.25rem;
}

.page-contact .form-group label {
    font-size: 0.875rem;
    margin-bottom: 0.35rem;
}

.page-contact .form-group input,
.page-contact .form-group textarea {
    padding: 0.6rem 0.75rem;
    font-size: 0.9375rem;
}

.page-contact .form-group textarea {
    min-height: 100px;
}

.page-contact .contact-form .btn {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
}

.page-contact .contact-social-block .contact-item-label {
    font-size: 0.7rem;
}

.page-contact .alert {
    font-size: 0.875rem;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
}

/* ===== FOOTER ===== */
footer {
    background: var(--primary-black);
    color: var(--text-light);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 1rem;
    text-decoration: none;
}

.footer-logo .logo-img {
    height: 50px;
    max-width: 200px;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
}

.footer-logo-text span {
    color: var(--primary-yellow);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.footer-contact i {
    color: var(--primary-yellow);
    margin-top: 0.25rem;
}

.footer-section h3 {
    color: var(--primary-yellow);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--primary-yellow);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--secondary-black);
    border-radius: 50%;
    color: var(--text-light);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-yellow);
    color: var(--primary-black);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--secondary-black);
    color: #999;
}

/* ===== ADMİN PANELİ ===== */
.admin-container {
    display: flex;
    min-height: 100vh;
}

.admin-sidebar {
    width: 250px;
    background: var(--primary-black);
    color: var(--text-light);
    padding: 2rem 0;
}

.admin-sidebar h2 {
    color: var(--primary-yellow);
    text-align: center;
    margin-bottom: 2rem;
}

.admin-sidebar-close {
    display: none;
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: rgba(255,255,255,0.1);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1.25rem;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s;
    -webkit-tap-highlight-color: transparent;
}
.admin-sidebar-close:hover {
    background: rgba(255,255,255,0.2);
}
.admin-sidebar {
    position: relative;
}
.admin-sidebar-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    padding: 1.25rem 1rem 1.5rem;
    margin-bottom: 0.5rem;
    text-decoration: none;
    color: var(--text-light);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.admin-sidebar-logo img {
    max-width: 140px;
    height: auto;
    max-height: 38px;
    object-fit: contain;
}
.admin-sidebar-brand {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}

.admin-menu {
    list-style: none;
}

.admin-menu li {
    margin-bottom: 0.5rem;
}

.admin-menu a {
    display: block;
    padding: 1rem 2rem;
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.admin-menu a:hover,
.admin-menu a.active {
    background: var(--secondary-black);
    border-left: 3px solid var(--primary-yellow);
}
.admin-menu-badge {
    display: inline-block;
    min-width: 20px;
    padding: 2px 6px;
    margin-left: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    text-align: center;
    background: var(--primary-yellow);
    color: var(--primary-black);
    border-radius: 10px;
}
.admin-menu-logout {
    margin-top: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.8);
}
.admin-menu-logout:hover {
    color: #fff;
}

.admin-content {
    flex: 1;
    padding: 2rem;
    min-width: 0;
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, #f8f9fa 0%, #f0f2f5 100%);
    min-height: 100vh;
}
.admin-content::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 20%, rgba(201, 162, 39, 0.04) 0%, transparent 50%),
                      radial-gradient(circle at 80% 80%, rgba(26, 26, 26, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}
.admin-content > * {
    position: relative;
    z-index: 1;
}

.admin-header {
    background: #fff;
    padding: 1.5rem 1.75rem;
    border-radius: 16px;
    margin-bottom: 1.75rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06), 0 1px 0 rgba(0,0,0,0.02);
    border: 1px solid rgba(0,0,0,0.04);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.admin-header-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-black);
    margin: 0 0 0.2rem;
    letter-spacing: -0.02em;
}
.admin-header-sub {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin: 0;
}
.admin-header-sub strong {
    color: var(--primary-black);
}
.admin-header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.admin-header h1 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-black);
    margin: 0;
    letter-spacing: -0.02em;
}

.admin-card {
    background: #fff;
    padding: 1.75rem 2rem;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06), 0 1px 0 rgba(0,0,0,0.02);
    border: 1px solid rgba(0,0,0,0.04);
    margin-bottom: 1.5rem;
}
.admin-card h2 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-black);
    margin: 0 0 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.admin-card h2 i {
    color: var(--primary-yellow);
    font-size: 1rem;
}
.admin-card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}
.admin-card-head h2 {
    margin: 0;
    padding: 0;
    border: none;
}
.admin-card-link {
    font-size: 0.875rem;
    color: var(--primary-yellow);
    text-decoration: none;
    font-weight: 500;
}
.admin-card-link:hover {
    text-decoration: underline;
    color: var(--color-accent-hover);
}
.admin-card-link i {
    font-size: 0.7rem;
    margin-left: 0.25rem;
}
.admin-card-empty {
    text-align: center;
    color: var(--color-text-muted);
    padding: 2rem;
    margin: 0;
    font-size: 0.9rem;
}
/* Admin form alanları – ultra profesyonel */
.admin-content .form-group {
    margin-bottom: 1.25rem;
}
.admin-content .form-group label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--primary-black);
    margin-bottom: 0.4rem;
}
.admin-content .form-group input[type="text"],
.admin-content .form-group input[type="email"],
.admin-content .form-group input[type="url"],
.admin-content .form-group input[type="number"],
.admin-content .form-group input[type="password"],
.admin-content .form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    font-size: 0.9375rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.admin-content .form-group input:focus,
.admin-content .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-yellow);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.12);
}
.admin-content .form-group small {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.75rem;
    color: var(--color-text-muted);
}
.admin-content .alert {
    border-radius: 10px;
    padding: 1rem 1.25rem;
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
    border: 1px solid transparent;
}
.admin-content .alert-success {
    background: #ecfdf5;
    color: #065f46;
    border-color: #a7f3d0;
}
.admin-content .alert-danger {
    background: #fef2f2;
    color: #991b1b;
    border-color: #fecaca;
}
.admin-content .logo-preview-admin {
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 10px;
    display: inline-block;
}
.admin-content .logo-preview-admin img {
    display: block;
}
.admin-card-meta {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

/* Mesajlar: filtre butonları ve detay alanı */
.message-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}
.filter-btn {
    padding: 0.5rem 1rem;
    border: 2px solid #e5e7eb;
    background: #fff;
    border-radius: 10px;
    color: var(--primary-black);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: border-color 0.2s, background 0.2s;
}
.filter-btn:hover {
    border-color: var(--primary-yellow);
    background: rgba(201, 162, 39, 0.06);
}
.filter-btn.active {
    background: var(--primary-yellow);
    border-color: var(--primary-yellow);
    color: var(--primary-black);
}
.message-detail-card .message-detail {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 0.5rem;
}
.message-detail-card h2 {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-yellow);
}
.message-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.25rem;
}
.message-info-item {
    background: #fff;
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid #eee;
}
.message-info-item strong {
    color: var(--primary-black);
    display: block;
    margin-bottom: 0.4rem;
    font-size: 0.8rem;
}
.message-info-item a {
    color: var(--primary-yellow);
    text-decoration: none;
}
.message-info-item a:hover {
    text-decoration: underline;
}
.message-info-subject {
    grid-column: 1 / -1;
}
.message-body {
    background: #fff;
    padding: 1.25rem;
    border-radius: 10px;
    border: 1px solid #eee;
    margin-bottom: 1.25rem;
}
.message-body strong {
    display: block;
    margin-bottom: 0.75rem;
    color: var(--primary-black);
    font-size: 0.9rem;
}
.message-body-text {
    line-height: 1.7;
    color: var(--primary-black);
    font-size: 0.9375rem;
}
.message-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}
.message-detail-actions .btn {
    min-height: 42px;
}

.admin-form-grid .form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
@media (max-width: 600px) {
    .admin-form-grid .form-row-2 {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .admin-form-grid .form-group input[style*="max-width: 120px"] {
        max-width: 100% !important;
    }
}
.admin-form-grid .form-group-inline {
    margin-bottom: 1rem;
}
.admin-btn-cancel {
    display: inline-block;
    margin-left: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #e5e7eb !important;
    color: #374151 !important;
    border: 1px solid #d1d5db !important;
    border-radius: 10px;
    text-decoration: none !important;
    font-weight: 500;
}
.admin-btn-cancel:hover {
    background: #d1d5db !important;
    color: #1f2937 !important;
}
.admin-service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(201, 162, 39, 0.12);
    color: var(--primary-yellow);
    border-radius: 10px;
    font-size: 1.1rem;
}
.admin-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-black);
    margin: 2rem 0 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.admin-card h3:first-of-type {
    margin-top: 1.5rem;
    padding-top: 1rem;
}
.admin-card h3 i {
    color: var(--primary-yellow);
}
.admin-content .btn {
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9375rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
@media (max-width: 600px) {
    .admin-card form div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }
}
.admin-table-wrap {
    overflow-x: auto;
}
.admin-table .row-unread {
    background: #fffbf0;
}
.admin-table .status {
    display: inline-block;
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
}
.admin-table .status-read {
    background: #e8f5e9;
    color: #2e7d32;
}
.admin-table .status-new {
    background: #ffebee;
    color: #c62828;
}

/* Dashboard özel */
.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1rem;
    margin-bottom: 1.75rem;
}
.dashboard-stat-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.25rem;
    border-radius: 12px;
    text-decoration: none;
    color: #fff;
    transition: transform 0.2s, box-shadow 0.2s;
}
.dashboard-stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}
.dashboard-stat-icon {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    opacity: 0.95;
}
.dashboard-stat-value {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}
.dashboard-stat-label {
    font-size: 0.8rem;
    font-weight: 600;
    opacity: 0.95;
    margin-top: 0.25rem;
}
.dashboard-stat-meta {
    font-size: 0.7rem;
    opacity: 0.8;
    margin-top: 0.2rem;
}
.dashboard-stat-services {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}
.dashboard-stat-messages {
    background: linear-gradient(135deg, #c9a227 0%, #b8921f 100%);
    color: #1a1a1a;
}
.dashboard-stat-messages .dashboard-stat-icon { color: #1a1a1a; }
.dashboard-stat-teklif {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}
.dashboard-stat-referans {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}
.dashboard-stat-blog {
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
}
.dashboard-stat-visits {
    background: linear-gradient(135deg, #374151 0%, #1f2937 100%);
}
.admin-btn-site {
    background: var(--primary-black) !important;
    color: #fff !important;
    border: 1px solid var(--primary-black) !important;
    padding: 0.6rem 1.25rem !important;
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    border-radius: 10px !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.4rem !important;
}
.admin-btn-site:hover {
    background: var(--secondary-black) !important;
    color: #fff !important;
    border-color: var(--secondary-black) !important;
}
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 1.5rem;
}
.dashboard-card .admin-table th,
.dashboard-card .admin-table td {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
}
@media (max-width: 900px) {
    .dashboard-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 480px) {
    .dashboard-stats {
        grid-template-columns: 1fr;
    }
}

/* ===== ADMİN MOBİL – Drawer menü, kart tablolar, dokunmatik ===== */
.admin-mobile-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin: 0 0.5rem 0 0;
    padding: 0;
    background: var(--primary-black);
    color: var(--primary-yellow);
    border: none;
    border-radius: 10px;
    font-size: 1.2rem;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s, transform 0.15s;
    -webkit-tap-highlight-color: transparent;
}
.admin-mobile-toggle:hover {
    background: var(--secondary-black);
}
.admin-mobile-toggle:active {
    transform: scale(0.96);
}
.admin-sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s, visibility 0.25s;
    pointer-events: none;
}
body.admin-sidebar-open .admin-sidebar-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
body.admin-sidebar-open {
    overflow: hidden;
    touch-action: none;
}

@media (max-width: 992px) {
    .admin-container {
        flex-direction: row;
        min-height: 100vh;
    }
    .admin-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        width: 280px;
        max-width: 85vw;
        z-index: 999;
        transform: translateX(-100%);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    body.admin-sidebar-open .admin-sidebar {
        transform: translateX(0);
        box-shadow: 4px 0 24px rgba(0,0,0,0.2);
    }
    .admin-sidebar-close {
        display: flex;
    }
    .admin-mobile-toggle {
        display: inline-flex;
    }
    .admin-sidebar-overlay {
        display: block;
    }
    .admin-content {
        width: 100%;
        min-width: 0;
        padding: 1rem;
        padding-top: env(safe-area-inset-top, 1rem);
    }
    .admin-header {
        flex-wrap: wrap;
        padding: 1rem 1.25rem;
        gap: 0.75rem;
    }
    .admin-header .admin-mobile-toggle {
        order: -1;
    }
    .admin-header-title {
        font-size: 1.2rem;
    }
    .admin-header-sub {
        font-size: 0.85rem;
    }
    .admin-header .btn {
        width: 100%;
        min-height: 44px;
        justify-content: center;
    }
    .dashboard-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        margin-bottom: 1.25rem;
    }
    .dashboard-stat-card {
        padding: 1rem;
        min-height: 100px;
    }
    .dashboard-stat-icon {
        font-size: 1.25rem;
    }
    .dashboard-stat-value {
        font-size: 1.5rem;
    }
    .dashboard-stat-label {
        font-size: 0.75rem;
    }
    .dashboard-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .admin-card {
        padding: 1.25rem;
    }
    .admin-card-head {
        flex-wrap: wrap;
        gap: 0.5rem;
        margin-bottom: 1rem;
    }
    .admin-card-head h2 {
        font-size: 1rem;
    }
    .admin-table-wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 0 -1.25rem;
        padding: 0 1.25rem;
    }
    .admin-table-mobile-cards.admin-card {
        overflow-x: hidden;
        min-width: 0;
    }
    .admin-table-mobile-cards .admin-table-wrap {
        margin: 0;
        padding: 0;
        overflow-x: visible;
    }
    .admin-table-mobile-cards .admin-table {
        min-width: 0;
    }
    /* Hizmetler: 992px’ten itibaren kart düzeni (taşma önleme) */
    .admin-table-mobile-cards .admin-table-hizmetler {
        display: block;
    }
    .admin-table-mobile-cards .admin-table-hizmetler thead {
        display: none;
    }
    .admin-table-mobile-cards .admin-table-hizmetler tbody {
        display: block;
    }
    .admin-table-mobile-cards .admin-table-hizmetler tr {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        padding: 1rem;
        margin-bottom: 0.85rem;
        background: #fff;
        border-radius: 14px;
        border: 1px solid #e5e7eb;
        box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    }
    .admin-table-mobile-cards .admin-table-hizmetler td {
        width: 100%;
        padding: 0.5rem 0;
        border-bottom: 1px solid #f0f0f0;
        font-size: 0.875rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    .admin-table-mobile-cards .admin-table-hizmetler td:nth-child(2) {
        order: -4;
        width: auto;
        flex: 0 0 auto;
        padding-right: 0.75rem;
        padding-bottom: 0;
        border-bottom: none;
    }
    .admin-table-mobile-cards .admin-table-hizmetler td:nth-child(2)::before {
        display: none;
    }
    .admin-table-mobile-cards .admin-table-hizmetler td:nth-child(3) {
        order: -3;
        flex: 1;
        min-width: 0;
        padding-bottom: 0.5rem;
        border-bottom: 1px solid #e5e7eb;
    }
    .admin-table-mobile-cards .admin-table-hizmetler td:nth-child(3)::before {
        display: none;
    }
    .admin-table-mobile-cards .admin-table-hizmetler td:nth-child(3) strong {
        font-size: 1.05rem;
    }
    .admin-table-mobile-cards .admin-table-hizmetler td:last-child {
        border-bottom: none;
        border-top: 1px solid #e5e7eb;
        padding-top: 0.65rem;
        margin-top: 0.5rem;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.4rem;
    }
    .admin-table-mobile-cards .admin-table-hizmetler td:last-child::before {
        display: block;
        content: attr(data-label);
        font-size: 0.7rem;
        font-weight: 600;
        color: var(--color-text-muted);
        margin-bottom: 0.2rem;
        width: 100%;
        flex-basis: 100%;
    }
    .admin-table-mobile-cards .admin-table-hizmetler .admin-cell-actions .btn-xs {
        width: auto;
        min-height: 30px;
        padding: 0.3rem 0.55rem;
        font-size: 0.7rem;
    }
    .admin-table-mobile-cards .admin-table-hizmetler .btn-mobile-primary {
        background: var(--primary-black) !important;
        color: #fff !important;
        border-color: var(--primary-black) !important;
    }
    /* Mesajlar: 992px’ten itibaren kart düzeni */
    .admin-table-mobile-cards .admin-table-mesajlar {
        display: block;
    }
    .admin-table-mobile-cards .admin-table-mesajlar thead {
        display: none;
    }
    .admin-table-mobile-cards .admin-table-mesajlar tbody {
        display: block;
    }
    .admin-table-mobile-cards .admin-table-mesajlar tr {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        padding: 1rem;
        margin-bottom: 0.85rem;
        background: #fff;
        border-radius: 14px;
        border: 1px solid #e5e7eb;
        box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    }
    .admin-table-mobile-cards .admin-table-mesajlar tr.row-unread {
        background: #fffbf0;
        border-color: rgba(201, 162, 39, 0.25);
    }
    .admin-table-mobile-cards .admin-table-mesajlar td {
        width: 100%;
        padding: 0.5rem 0;
        border-bottom: 1px solid #f0f0f0;
        font-size: 0.875rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        min-width: 0;
    }
    .admin-table-mobile-cards .admin-table-mesajlar td::before {
        content: attr(data-label);
        display: block;
        font-size: 0.7rem;
        font-weight: 600;
        color: var(--color-text-muted);
        margin-bottom: 0.2rem;
    }
    .admin-table-mobile-cards .admin-table-mesajlar td:nth-child(1) {
        order: -5;
        width: auto;
        flex: 0 0 auto;
        padding-right: 0.5rem;
        padding-bottom: 0;
        border-bottom: none;
    }
    .admin-table-mobile-cards .admin-table-mesajlar td:nth-child(2) {
        order: -4;
        width: auto;
        flex: 0 0 auto;
        padding-bottom: 0;
        border-bottom: none;
    }
    .admin-table-mobile-cards .admin-table-mesajlar td:nth-child(2)::before {
        display: none;
    }
    .admin-table-mobile-cards .admin-table-mesajlar td:nth-child(3) {
        order: -3;
        flex: 1;
        min-width: 0;
        padding-bottom: 0.5rem;
        border-bottom: 1px solid #e5e7eb;
    }
    .admin-table-mobile-cards .admin-table-mesajlar td:nth-child(3)::before {
        display: none;
    }
    .admin-table-mobile-cards .admin-table-mesajlar td:last-child {
        border-bottom: none;
        border-top: 1px solid #e5e7eb;
        padding-top: 0.65rem;
        margin-top: 0.5rem;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.4rem;
    }
    .admin-table-mobile-cards .admin-table-mesajlar td:last-child::before {
        display: block;
        content: attr(data-label);
        font-size: 0.7rem;
        font-weight: 600;
        color: var(--color-text-muted);
        margin-bottom: 0.2rem;
        width: 100%;
        flex-basis: 100%;
    }
    .admin-table-mobile-cards .admin-table-mesajlar .admin-cell-actions .btn-xs {
        min-height: 30px;
        padding: 0.3rem 0.55rem;
        font-size: 0.7rem;
    }
    .admin-table-mobile-cards .admin-table-mesajlar .btn-mobile-primary {
        background: var(--primary-black) !important;
        color: #fff !important;
        border-color: var(--primary-black) !important;
    }
    .admin-table {
        min-width: 500px;
    }
    .admin-table th,
    .admin-table td {
        padding: 0.75rem 0.5rem;
        font-size: 0.8125rem;
    }
    .btn-sm {
        min-height: 38px;
        padding: 0.4rem 0.75rem;
        font-size: 0.8125rem;
    }
    .admin-header {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 0.75rem;
    }
    .admin-header h1 {
        flex: 1;
        min-width: 0;
        font-size: 1.2rem;
    }
    .admin-header .btn {
        min-height: 44px;
    }
    .admin-card .form-group + .form-group {
        margin-bottom: 1rem;
    }
}

@media (max-width: 600px) {
    .dashboard-stats {
        grid-template-columns: 1fr;
    }
    .dashboard-stat-card {
        flex-direction: row;
        align-items: center;
        gap: 1rem;
        min-height: auto;
        padding: 1rem 1.25rem;
    }
    .dashboard-stat-icon {
        margin-bottom: 0;
        font-size: 1.75rem;
    }
    .dashboard-stat-value {
        font-size: 1.5rem;
    }
    .dashboard-stat-label {
        margin-top: 0;
    }
    .dashboard-stat-meta {
        margin-left: auto;
        font-size: 0.75rem;
    }
    /* Tabloları mobilde kart listesi yap */
    .admin-table-mobile-cards {
        overflow-x: visible;
    }
    .admin-table-mobile-cards .admin-table-wrap {
        overflow: visible;
        margin: 0;
        padding: 0;
    }
    .admin-table-mobile-cards .admin-table {
        display: block;
    }
    .admin-table-mobile-cards .admin-table thead {
        display: none;
    }
    .admin-table-mobile-cards .admin-table tbody {
        display: block;
    }
    .admin-table-mobile-cards .admin-table tr {
        display: block;
        padding: 1rem;
        margin-bottom: 0.75rem;
        background: #f8f9fa;
        border-radius: 12px;
        border: 1px solid #eee;
        box-shadow: 0 1px 2px rgba(0,0,0,0.04);
    }
    .admin-table-mobile-cards .admin-table tr.row-unread {
        background: #fffbf0;
        border-color: rgba(201, 162, 39, 0.25);
    }
    .admin-table-mobile-cards .admin-table td {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0.5rem 0;
        border: none;
        font-size: 0.875rem;
    }
    .admin-table-mobile-cards .admin-table td::before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--color-text-muted);
        margin-right: 0.75rem;
        flex-shrink: 0;
    }
    .admin-table-mobile-cards .admin-table td:last-child {
        width: 100%;
        justify-content: flex-end;
        flex-wrap: wrap;
        gap: 0.35rem;
        margin-top: 0.5rem;
        padding-top: 0.75rem;
        border-top: 1px solid #eee;
    }
    .admin-table-mobile-cards .admin-table td:last-child::before {
        display: none;
    }
    .admin-table-mobile-cards .admin-table .btn-xs {
        margin-right: 0;
        padding: 0.4rem 0.65rem;
        font-size: 0.7rem;
    }
    .admin-table-hizmetler .admin-service-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    /* Mevcut Hizmetler – mobil kart düzeni (sadece hizmetler sayfası) */
    .admin-table-mobile-cards .admin-table-hizmetler tr {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        padding: 1rem;
        margin-bottom: 1rem;
        background: #fff;
        border-radius: 14px;
        border: 1px solid #e5e7eb;
        box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    }
    .admin-table-mobile-cards .admin-table-hizmetler td {
        width: 100%;
        padding: 0.5rem 0;
        border-bottom: 1px solid #f0f0f0;
        font-size: 0.875rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        min-width: 0;
    }
    .admin-table-mobile-cards .admin-table-hizmetler td::before {
        content: attr(data-label);
        display: block;
        font-size: 0.7rem;
        font-weight: 600;
        color: var(--color-text-muted);
        margin-bottom: 0.2rem;
    }
    .admin-table-mobile-cards .admin-table-hizmetler td:nth-child(2) {
        order: -4;
        width: auto;
        flex: 0 0 auto;
        padding-right: 0.75rem;
        padding-bottom: 0;
        border-bottom: none;
    }
    .admin-table-mobile-cards .admin-table-hizmetler td:nth-child(2)::before {
        display: none;
    }
    .admin-table-mobile-cards .admin-table-hizmetler td:nth-child(3) {
        order: -3;
        flex: 1;
        min-width: 0;
        padding-bottom: 0.5rem;
        border-bottom: 1px solid #e5e7eb;
    }
    .admin-table-mobile-cards .admin-table-hizmetler td:nth-child(3)::before {
        display: none;
    }
    .admin-table-mobile-cards .admin-table-hizmetler td:nth-child(3) strong {
        font-size: 1.05rem;
    }
    .admin-table-mobile-cards .admin-table-hizmetler td:last-child {
        border-bottom: none;
        border-top: 1px solid #e5e7eb;
        padding-top: 0.65rem;
        margin-top: 0.5rem;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 0.4rem;
    }
    .admin-table-mobile-cards .admin-table-hizmetler td:last-child::before {
        display: block;
        content: attr(data-label);
        font-size: 0.7rem;
        font-weight: 600;
        color: var(--color-text-muted);
        margin-bottom: 0.2rem;
        width: 100%;
    }
    .admin-table-mobile-cards .admin-table-hizmetler .admin-cell-actions {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.4rem;
    }
    .admin-table-mobile-cards .admin-table-hizmetler .admin-cell-actions .btn-xs {
        width: auto;
        min-height: 32px;
        padding: 0.35rem 0.6rem;
        font-size: 0.7rem;
    }
    .admin-table-mobile-cards .admin-table-hizmetler .btn-mobile-primary {
        background: var(--primary-black) !important;
        color: #fff !important;
        border-color: var(--primary-black) !important;
        font-weight: 600;
    }
    .admin-table-mobile-cards .admin-table-hizmetler .btn-mobile-primary:hover {
        background: var(--secondary-black) !important;
        color: #fff !important;
    }
    /* Mesajlar – 600px mobil kart düzeni */
    .admin-table-mobile-cards .admin-table-mesajlar tr {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        padding: 1rem;
        margin-bottom: 0.85rem;
        background: #fff;
        border-radius: 14px;
        border: 1px solid #e5e7eb;
        box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    }
    .admin-table-mobile-cards .admin-table-mesajlar tr.row-unread {
        background: #fffbf0;
        border-color: rgba(201, 162, 39, 0.25);
    }
    .admin-table-mobile-cards .admin-table-mesajlar td {
        width: 100%;
        display: block;
        padding: 0.5rem 0;
        border-bottom: 1px solid #f0f0f0;
        font-size: 0.875rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        min-width: 0;
    }
    .admin-table-mobile-cards .admin-table-mesajlar td::before {
        content: attr(data-label);
        display: block;
        font-size: 0.7rem;
        font-weight: 600;
        color: var(--color-text-muted);
        margin-bottom: 0.2rem;
    }
    .admin-table-mobile-cards .admin-table-mesajlar td:nth-child(1) {
        order: -5;
        width: auto;
        flex: 0 0 auto;
        padding-right: 0.5rem;
        padding-bottom: 0;
        border-bottom: none;
    }
    .admin-table-mobile-cards .admin-table-mesajlar td:nth-child(2) {
        order: -4;
        width: auto;
        flex: 0 0 auto;
        padding-bottom: 0;
        border-bottom: none;
    }
    .admin-table-mobile-cards .admin-table-mesajlar td:nth-child(2)::before { display: none; }
    .admin-table-mobile-cards .admin-table-mesajlar td:nth-child(3) {
        order: -3;
        flex: 1;
        min-width: 0;
        padding-bottom: 0.5rem;
        border-bottom: 1px solid #e5e7eb;
    }
    .admin-table-mobile-cards .admin-table-mesajlar td:nth-child(3)::before { display: none; }
    .admin-table-mobile-cards .admin-table-mesajlar td:last-child {
        border-bottom: none;
        border-top: 1px solid #e5e7eb;
        padding-top: 0.65rem;
        margin-top: 0.5rem;
    }
    .admin-table-mobile-cards .admin-table-mesajlar td:last-child::before {
        display: block;
        width: 100%;
    }
    .admin-table-mobile-cards .admin-table-mesajlar .admin-cell-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 0.4rem;
    }
    .admin-table-mobile-cards .admin-table-mesajlar .admin-cell-actions .btn-xs {
        min-height: 32px;
        padding: 0.35rem 0.6rem;
        font-size: 0.7rem;
    }
    .admin-table-mobile-cards .admin-table-mesajlar .btn-mobile-primary {
        background: var(--primary-black) !important;
        color: #fff !important;
        border-color: var(--primary-black) !important;
    }
    .message-info {
        grid-template-columns: 1fr;
    }
    .message-detail-actions .btn {
        flex: 1;
        min-width: 140px;
        justify-content: center;
    }
    /* Mobilde yatay kaymayı önle */
    body.admin-page,
    .admin-container,
    .admin-content {
        overflow-x: hidden;
        max-width: 100vw;
    }
    .admin-content {
        padding: 0.75rem;
        padding-bottom: 2rem;
        box-sizing: border-box;
    }
    .admin-card {
        max-width: 100%;
        box-sizing: border-box;
    }
    .admin-header {
        padding: 1rem;
        gap: 0.5rem;
    }
    .admin-header-title {
        font-size: 1.1rem;
    }
    .admin-header-sub {
        font-size: 0.8rem;
    }
    .admin-header .admin-btn-site {
        min-height: 44px;
        width: 100%;
        justify-content: center;
    }
    .admin-card {
        padding: 1rem;
    }
    .admin-card h2 {
        font-size: 1rem;
        padding-bottom: 0.75rem;
    }
    .admin-card-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    .admin-card-meta {
        font-size: 0.8rem;
    }
    .admin-form-grid .form-group label {
        font-size: 0.8rem;
    }
    .admin-form-grid .form-group input,
    .admin-form-grid .form-group textarea {
        padding: 0.65rem 0.85rem;
        font-size: 0.9rem;
    }
    .admin-form-grid .form-group textarea {
        min-height: 80px;
    }
    .admin-form-grid .btn,
    .admin-form-grid .admin-btn-cancel {
        width: 100%;
        justify-content: center;
        min-height: 44px;
    }
    .admin-form-grid .admin-btn-cancel {
        margin-left: 0;
        margin-top: 0.5rem;
    }
    .admin-table-mobile-cards .admin-table tr {
        padding: 0.85rem;
    }
    .admin-table-mobile-cards .admin-table td {
        font-size: 0.8125rem;
    }
    .admin-cell-actions .btn-xs {
        min-height: 36px;
        padding: 0.45rem 0.75rem;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .admin-content {
        padding: 0.5rem;
    }
    .admin-header-sub {
        display: none;
    }
    .admin-card {
        padding: 0.85rem;
    }
    .admin-table-mobile-cards .admin-table-hizmetler .admin-cell-actions .btn-xs {
        min-height: 28px;
        padding: 0.28rem 0.5rem;
        font-size: 0.65rem;
    }
}

/* Admin mobil: taşma önleme (tüm genişlikler) */
@media (max-width: 992px) {
    body.admin-page {
        overflow-x: hidden;
    }
    .admin-content * {
        box-sizing: border-box;
    }
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.admin-table th {
    background: var(--primary-black);
    color: var(--text-light);
}

.admin-table tr:hover {
    background: #f9f9f9;
}

.btn-sm {
    padding: 5px 15px;
    font-size: 0.9rem;
    margin-right: 5px;
}
.btn-xs {
    padding: 4px 10px;
    font-size: 0.75rem;
    margin-right: 4px;
    min-height: 28px;
    line-height: 1.2;
}
.btn-xs:last-child {
    margin-right: 0;
}
.admin-cell-actions {
    white-space: nowrap;
}
.admin-cell-actions .btn-xs {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-success {
    background: #28a745;
    border-color: #28a745;
}

.btn-danger {
    background: #dc3545;
    border-color: #dc3545;
}

.btn-success:hover {
    background: #218838;
}

.btn-danger:hover {
    background: #c82333;
}

/* ===== ADMIN LOGIN – Ultra profesyonel, kompakt, catering arka plan ===== */
.admin-login-page {
    margin: 0;
    min-height: 100vh;
    font-family: var(--font-sans);
}
.admin-login-wrap {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1rem;
    position: relative;
}
.admin-login-bg {
    position: fixed;
    inset: 0;
    background: #1a1a1a;
    z-index: 0;
}
.admin-login-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1555244162-803834f70033?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.admin-login-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.55) 100%);
    pointer-events: none;
}
.admin-login-card {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 340px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.08);
}
.admin-login-card-inner {
    padding: 1.75rem 1.5rem;
}
.admin-login-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    margin-bottom: 1.25rem;
    text-decoration: none;
    color: var(--primary-black);
}
.admin-login-logo img {
    max-width: 160px;
    height: auto;
    max-height: 44px;
    object-fit: contain;
}
.admin-login-logo-text {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}
.admin-login-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-black);
    margin: 0 0 1.1rem;
    letter-spacing: -0.02em;
    text-align: center;
}
.admin-login-alert {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 0.85rem;
    margin-bottom: 1rem;
    background: #fef2f2;
    color: #991b1b;
    border-radius: 8px;
    font-size: 0.8125rem;
    border: 1px solid #fecaca;
}
.admin-login-alert i {
    flex-shrink: 0;
    font-size: 0.9rem;
}
.admin-login-form {
    margin-bottom: 1rem;
}
.admin-login-field {
    margin-bottom: 0.9rem;
}
.admin-login-field label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-black);
    margin-bottom: 0.3rem;
}
.admin-login-input-wrap {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0 0.85rem;
    height: 42px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.admin-login-input-wrap:focus-within {
    border-color: var(--primary-yellow);
    box-shadow: 0 0 0 2px rgba(201, 162, 39, 0.18);
}
.admin-login-input-wrap i {
    color: var(--color-text-muted);
    font-size: 0.85rem;
    flex-shrink: 0;
}
.admin-login-input-wrap input {
    flex: 1;
    min-width: 0;
    border: none;
    background: none;
    font-size: 0.875rem;
    color: var(--primary-black);
    font-family: inherit;
}
.admin-login-input-wrap input::placeholder {
    color: #adb5bd;
}
.admin-login-input-wrap input:focus {
    outline: none;
}
.admin-login-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    width: 100%;
    height: 42px;
    margin-top: 0.25rem;
    padding: 0 1.25rem;
    font-size: 0.9375rem;
    font-weight: 600;
    font-family: inherit;
    color: var(--primary-black);
    background: var(--primary-yellow);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
}
.admin-login-btn:hover {
    background: var(--color-accent-hover);
    transform: translateY(-1px);
}
.admin-login-btn:active {
    transform: translateY(0);
}
.admin-login-footer {
    text-align: center;
    padding-top: 0.75rem;
    border-top: 1px solid #eee;
}
.admin-login-back {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color 0.2s;
}
.admin-login-back:hover {
    color: var(--primary-yellow);
}
@media (max-width: 480px) {
    .admin-login-card-inner {
        padding: 1.5rem 1.25rem;
    }
    .admin-login-logo img {
        max-width: 140px;
        max-height: 38px;
    }
}

/* Eski login sınıfları (geriye dönük uyumluluk) */
.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-black) 100%);
}
.login-box {
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    width: 100%;
    max-width: 400px;
}
.login-box h2 {
    text-align: center;
    color: var(--primary-black);
    margin-bottom: 2rem;
}
.login-box .logo {
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.alert {
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

/* --------------------------------------------------------------------------
   HERO SLIDER
   -------------------------------------------------------------------------- */
.hero-slider {
    position: relative;
    height: 85vh;
    min-height: 420px;
    max-height: 700px;
    overflow: hidden;
}

.slider-track {
    position: relative;
    height: 100%;
}

.hero-slider .slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slider .slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.hero-slider .slide-bg {
    position: absolute;
    inset: 0;
    background-color: var(--primary-black);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slider .slide-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.55) 100%);
}

.slide-bg-img1 {
    background-image: url('https://images.unsplash.com/photo-1555244162-803834f70033?w=1920&q=80');
}

.slide-bg-img2 {
    background-image: url('https://images.unsplash.com/photo-1578474846511-04ba529f0b88?w=1920&q=80');
}

.slide-bg-img3 {
    background-image: url('https://images.unsplash.com/photo-1519225421980-715cb0215aed?w=1920&q=80');
}

.hero-slider .slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-light);
    padding: 2rem 1rem;
}

.hero-slider .hero-badge {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary-yellow);
    margin-bottom: 0.75rem;
    padding: 0.35rem 0.9rem;
    border: 1px solid rgba(255,215,0,0.4);
    border-radius: 50px;
}

.hero-slider h1 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: #fff;
}

.hero-slider .hero-desc {
    font-size: 0.95rem;
    max-width: 520px;
    margin: 0 auto 1.25rem;
    opacity: 0.92;
}

.hero-slider .hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.hero-slider .slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border: none;
    background: rgba(255,255,255,0.15);
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.hero-slider .slider-btn:hover {
    background: var(--primary-yellow);
    color: var(--primary-black);
}

.hero-slider .slider-prev { left: 1rem; }
.hero-slider .slider-next { right: 1rem; }

.hero-slider .slider-dots {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 0.5rem;
}

.hero-slider .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.6);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
}

.hero-slider .dot.active {
    background: var(--primary-yellow);
    border-color: var(--primary-yellow);
}

.scroll-indicator-slider {
    position: absolute;
    bottom: 3.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.8);
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
    animation: bounce 2s infinite;
}

.scroll-indicator-slider:hover {
    color: var(--primary-yellow);
    border-color: var(--primary-yellow);
}

/* --------------------------------------------------------------------------
   MODAL
   -------------------------------------------------------------------------- */
.modal {
    position: fixed;
    inset: 0;
    z-index: var(--z-modal);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    cursor: pointer;
}

.modal-box {
    position: relative;
    background: #fff;
    border-radius: 12px;
    max-width: 520px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    padding: 2rem;
}

.modal-box-sm {
    max-width: 420px;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    border: none;
    background: #f0f0f0;
    color: #333;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--primary-yellow);
    color: var(--primary-black);
}

.modal-title {
    margin-bottom: 0.5rem;
    color: var(--primary-black);
    font-size: 1.5rem;
}

.modal-desc {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.modal-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.modal-form .form-message {
    padding: 0.75rem;
    border-radius: 6px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.modal-form .form-message.success {
    background: #d4edda;
    color: #155724;
}

.modal-form .form-message.error {
    background: #f8d7da;
    color: #721c24;
}

.hizmet-modal-icon {
    font-size: 2.5rem;
    color: var(--primary-yellow);
    margin-bottom: 1rem;
}

/* ===== NEDEN BİZİ SEÇMELİ ===== */
.why-us {
    background: #f9f9f9;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.why-us-item {
    text-align: center;
    padding: 1.5rem 1rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.why-us-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.why-us-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    background: var(--primary-black);
    color: var(--primary-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.why-us-item h3 {
    font-size: 1.05rem;
    color: var(--primary-black);
    margin-bottom: 0.5rem;
}

.why-us-item p {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.5;
}

/* ===== REFERANSLAR ===== */
.referanslar {
    background: #f5f5f5;
}

.referanslar-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.referans-item {
    flex: 0 0 auto;
}

.referans-logo {
    display: block;
    padding: 1rem 1.5rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    transition: var(--transition);
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.referans-logo:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.referans-logo img {
    max-height: 50px;
    max-width: 120px;
    object-fit: contain;
    filter: grayscale(0.4);
}

.referans-logo:hover img {
    filter: grayscale(0);
}

.referans-name {
    display: inline-block;
    padding: 0.75rem 1.25rem;
    background: #fff;
    border-radius: 8px;
    font-weight: 600;
    color: var(--primary-black);
    font-size: 0.9rem;
}

.referanslar-empty {
    text-align: center;
    color: #888;
    padding: 2rem;
}

/* CTA second button */
.btn-light-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.7);
}

.btn-light-outline:hover {
    background: rgba(255,255,255,0.15);
    color: #fff;
    border-color: #fff;
}

/* Service link as button */
button.service-link,
.service-link {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
    padding: 0;
    margin-top: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--primary-yellow);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition);
}

/* --------------------------------------------------------------------------
   KURUMSAL ANA SAYFA (page-home – küçük yazı, kompakt)
   -------------------------------------------------------------------------- */
.page-home {
    font-size: 14px;
    line-height: 1.5;
}

.page-home .container {
    max-width: 1100px;
}

/* Ana sayfa header/footer container diğer sayfalarla aynı genişlik (1200px) */
.page-home .site-header .container,
.page-home .site-footer .container {
    max-width: 1200px;
}

/* Ana sayfa header/nav görünümü diğer sayfalarla aynı */

/* Hero kurumsal – kompakt */
.page-home .hero-corporate.hero-pro {
    padding: 4rem 0 3.5rem;
    min-height: auto;
}

.page-home .hero-corporate .hero-badge {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    padding: 0.3rem 0.75rem;
    margin-bottom: 0.75rem;
}

.page-home .hero-corporate h1 {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.25;
}

.page-home .hero-corporate .hero-desc {
    font-size: 0.9rem;
    max-width: 540px;
    margin: 0 auto 1.25rem;
    line-height: 1.55;
    opacity: 0.9;
}

.page-home .hero-corporate .hero-cta {
    gap: 0.75rem;
}

.page-home .hero-corporate .btn {
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
    font-weight: 600;
}

.page-home .hero-corporate .hero-scroll {
    bottom: 1.25rem;
}

.page-home .hero-corporate .scroll-indicator {
    width: 36px;
    height: 36px;
    font-size: 0.75rem;
}

/* İstatistik bandı kurumsal */
.page-home .stats-corporate {
    padding: 1.5rem 0;
}

.page-home .stats-corporate .stats-grid {
    gap: 1.25rem;
}

.page-home .stats-corporate .stat-number {
    font-size: 1.75rem;
    font-weight: 700;
}

.page-home .stats-corporate .stat-suffix {
    font-size: 1.1rem;
}

.page-home .stats-corporate .stat-label {
    font-size: 0.8rem;
    margin-top: 0.15rem;
}

/* Bölüm başlıkları kurumsal */
.page-home .section-corporate.section-pro {
    padding: 3rem 0;
}

.page-home .section-corporate .section-title {
    margin-bottom: 2rem;
}

.page-home .section-corporate .section-badge {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.35rem;
}

.page-home .section-corporate .section-title h2 {
    font-size: 1.5rem;
    font-weight: 700;
}

.page-home .section-corporate .section-title h2::after {
    width: 50px;
    height: 2px;
    bottom: -6px;
}

.page-home .section-corporate .section-desc {
    font-size: 0.875rem;
    max-width: 480px;
}

/* Hizmet kartları kurumsal */
.page-home .section-corporate .services-grid {
    gap: 1.25rem;
}

.page-home .section-corporate .service-card {
    padding: 1.25rem;
    border-top-width: 2px;
}

.page-home .section-corporate .service-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.page-home .section-corporate .service-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.page-home .section-corporate .service-card p {
    font-size: 0.8125rem;
    line-height: 1.5;
}

.page-home .section-corporate .service-link {
    font-size: 0.8rem;
    margin-top: 0.75rem;
}

.page-home .section-corporate .service-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Hizmetlerimiz sayfası – ana sayfadaki gibi küçük yazılar (kurumsal) */
.page-services .section-corporate.section-pro {
    padding: 3rem 0;
}

.page-services .section-corporate .section-title {
    margin-bottom: 2rem;
}

.page-services .section-corporate .section-badge {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.35rem;
}

.page-services .section-corporate .section-title h2 {
    font-size: 1.5rem;
    font-weight: 700;
}

.page-services .section-corporate .section-title h2::after {
    width: 50px;
    height: 2px;
    bottom: -6px;
}

.page-services .section-corporate .section-desc {
    font-size: 0.875rem;
    max-width: 480px;
}

.page-services .section-corporate .services-grid {
    gap: 1.25rem;
}

.page-services .section-corporate .service-card {
    padding: 1.25rem;
    border-top-width: 2px;
}

.page-services .section-corporate .service-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.page-services .section-corporate .service-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.page-services .section-corporate .service-card p {
    font-size: 0.8125rem;
    line-height: 1.5;
}

.page-services .section-corporate .service-link {
    font-size: 0.8rem;
    margin-top: 0.75rem;
}

.page-services .section-corporate .service-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Hakkımızda sayfası – ana sayfa / hizmetlerimiz ile aynı kurumsal küçük yazılar */
.page-about .section-corporate.section-pro {
    padding: 3rem 0;
}

.page-about .section-corporate .section-title {
    margin-bottom: 2rem;
}

.page-about .section-corporate .section-badge {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.35rem;
}

.page-about .section-corporate .section-title h2 {
    font-size: 1.5rem;
    font-weight: 700;
}

.page-about .section-corporate .section-title h2::after {
    width: 50px;
    height: 2px;
    bottom: -6px;
}

.page-about .section-corporate .section-desc {
    font-size: 0.875rem;
    max-width: 480px;
}

.page-about .section-corporate .about-content {
    gap: 2rem;
}

.page-about .section-corporate .about-text h2 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.page-about .section-corporate .about-lead {
    font-size: 0.9375rem;
    margin-bottom: 0.5rem;
}

.page-about .section-corporate .about-text p {
    font-size: 0.875rem;
    margin-bottom: 0.6rem;
    line-height: 1.55;
}

.page-about .section-corporate .about-features {
    margin-top: 1.25rem;
}

.page-about .section-corporate .about-features li {
    padding: 0.35rem 0;
    font-size: 0.875rem;
}

.page-about .section-corporate .about-features li i {
    font-size: 0.75rem;
}

.page-about .section-corporate .about-image {
    height: 280px;
}

.page-about .section-corporate .btn {
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
}

/* Hakkımızda – Misyon & Vizyon kurumsal */
.page-about .mission-vision.section-pro {
    padding: 3rem 0;
}

.page-about .mv-grid {
    gap: 1.5rem;
}

.page-about .mv-card {
    padding: 1.5rem 1.5rem;
}

.page-about .mv-icon {
    width: 52px;
    height: 52px;
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.page-about .mv-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.page-about .mv-text {
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Hakkımızda – Değerler kurumsal */
.page-about .values-section .section-title {
    margin-bottom: 2rem;
}

.page-about .values-grid {
    gap: 1.25rem;
}

.page-about .value-card {
    padding: 1.25rem 1.25rem;
}

.page-about .value-icon {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.page-about .value-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.page-about .value-text {
    font-size: 0.8125rem;
    line-height: 1.5;
}

/* Hakkımızda – CTA kurumsal */
.page-about .cta-corporate {
    padding: 2.25rem 0;
}

.page-about .cta-corporate .cta-content h2 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.page-about .cta-corporate .cta-content p {
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.page-about .cta-corporate .btn {
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
}

/* Hakkımızda kurumsal */
.page-home .section-corporate .about-content {
    gap: 2rem;
}

.page-home .section-corporate .about-text h2 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.page-home .section-corporate .about-lead {
    font-size: 0.9375rem;
    margin-bottom: 0.5rem;
}

.page-home .section-corporate .about-text p {
    font-size: 0.875rem;
    margin-bottom: 0.6rem;
    line-height: 1.55;
}

.page-home .section-corporate .about-features {
    margin-top: 1.25rem;
}

.page-home .section-corporate .about-features li {
    padding: 0.35rem 0;
    font-size: 0.875rem;
}

.page-home .section-corporate .about-features li i {
    font-size: 0.75rem;
}

.page-home .section-corporate .about-image {
    height: 280px;
    font-size: 3.5rem;
}

.page-home .section-corporate .btn {
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
}

.page-home .why-us .section-title h2 {
    font-size: 1.5rem;
}

.page-home .why-us-item h3 {
    font-size: 1rem;
}

.page-home .why-us-item p {
    font-size: 0.8125rem;
}

.page-home .why-us-icon {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
}

.page-home .referanslar .section-title h2 {
    font-size: 1.5rem;
}

/* CTA band kurumsal */
.page-home .cta-corporate {
    padding: 2.25rem 0;
}

.page-home .cta-corporate .cta-content h2 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.page-home .cta-corporate .cta-content p {
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.page-home .cta-corporate .btn {
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
}

/* Footer kurumsal */
.page-home .site-footer {
    padding: 2rem 0 0.75rem;
}

.page-home .site-footer .footer-content {
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.page-home .site-footer .footer-logo .logo-img {
    height: 72px;
    max-width: 280px;
}

.page-home .site-footer .footer-logo .logo-text {
    font-size: 1.75rem;
}

.page-home .site-footer .footer-section p,
.page-home .site-footer .footer-section ul li {
    font-size: 0.8125rem;
}

.page-home .site-footer .footer-section h3 {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.page-home .site-footer .footer-bottom {
    padding-top: 1.25rem;
    font-size: 0.75rem;
}

.page-home .site-footer .social-links a {
    width: 34px;
    height: 34px;
    font-size: 0.85rem;
}

/* --------------------------------------------------------------------------
   RESPONSIVE
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
    /* --- Header: Logo | Teklif Alın | Menü (tek satır, menü sağda) --- */
    .header-pro .header-top {
        display: none;
    }
    
    .header-pro .header-main {
        position: relative;
        padding: var(--space-3) 0;
    }
    
    .header-pro .header-content {
        flex-wrap: nowrap;
        gap: var(--space-3);
        align-items: center;
    }
    
    .header-pro .header-content .logo {
        order: 1;
        flex-shrink: 0;
    }
    
    .header-pro .header-content .header-cta-btn {
        order: 2;
        margin-left: auto;
        padding: var(--space-2) var(--space-4);
        flex-shrink: 0;
    }
    
    .header-pro .header-cta-btn span {
        display: inline;
    }
    
    .header-pro .header-content .nav-pro {
        order: 3;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        position: relative;
    }
    
    /* Mobil menü: backdrop + sağdan açılan panel (sıfırdan tasarım) */
    .mobile-menu-backdrop {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.45);
        backdrop-filter: blur(4px);
        z-index: 998;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .mobile-menu-backdrop.active {
        display: block;
        opacity: 1;
    }
    
    .header-pro .nav-pro ul.mobile-menu-panel {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        width: min(320px, 88vw);
        max-width: 100%;
        height: 100%;
        height: 100dvh;
        margin: 0;
        padding: 4rem 0 2rem;
        padding-bottom: calc(2rem + env(safe-area-inset-bottom));
        background: linear-gradient(180deg, #1a1a1a 0%, #252525 100%);
        list-style: none;
        z-index: 999;
        box-shadow: -8px 0 32px rgba(0, 0, 0, 0.35);
        overflow-y: auto;
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease;
    }
    
    .header-pro .nav-pro ul.mobile-menu-panel.active {
        transform: translateX(0);
    }
    
    .header-pro .nav-pro ul.mobile-menu-panel li {
        margin: 0;
    }
    
    .header-pro .nav-pro ul.mobile-menu-panel a {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 1rem 1.5rem;
        margin: 0 0.75rem;
        color: rgba(255, 255, 255, 0.92);
        font-size: 1.0625rem;
        font-weight: 500;
        text-decoration: none;
        border-radius: 12px;
        transition: background 0.2s ease, color 0.2s ease;
    }
    
    .header-pro .nav-pro ul.mobile-menu-panel a i {
        display: inline-block;
        width: 24px;
        text-align: center;
        font-size: 1rem;
        opacity: 0.85;
    }
    
    .header-pro .nav-pro ul.mobile-menu-panel a:hover,
    .header-pro .nav-pro ul.mobile-menu-panel a.active {
        background: rgba(255, 215, 0, 0.12);
        color: var(--color-accent);
    }
    
    .header-pro .nav-pro ul.mobile-menu-panel a:hover i,
    .header-pro .nav-pro ul.mobile-menu-panel a.active i {
        opacity: 1;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    body.menu-open {
        overflow: hidden;
    }
    
    /* İç sayfa hero mobil – kompakt */
    .hero-page {
        padding: 1.75rem 0 2rem;
    }
    
    .hero-page h1 {
        font-size: 1.35rem;
    }
    
    .hero-page .hero-desc {
        font-size: 0.875rem;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .mv-card {
        padding: 2rem 1.5rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    
    /* --- Footer --- */
    .footer-pro .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-pro .footer-main {
        padding: 2.5rem 0 2rem;
    }
    
    /* --- Genel --- */
    .logo-img {
        height: 48px;
        max-width: 180px;
    }
    
    .header-pro .logo-pro .logo-img {
        height: 52px;
        max-width: 200px;
    }
    
    .header-pro .logo-pro .logo-text {
        font-size: 1.35rem;
    }
    
    .hero-pro {
        padding: 80px 0 70px;
        min-height: auto;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p,
    .hero-desc {
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    
    /* Slider mobil – doğru çalışma ve güzel görünüm */
    .hero-slider {
        height: 75vh;
        min-height: 380px;
        max-height: 600px;
    }
    
    .hero-slider .slide-content {
        padding: 1.5rem var(--space-4);
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .hero-slider .hero-badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.75rem;
    }
    
    .hero-slider h1 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-slider .hero-desc {
        font-size: 0.875rem;
        margin-bottom: 1rem;
    }
    
    .hero-slider .hero-cta {
        gap: 0.5rem;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    
    .hero-slider .hero-cta .btn {
        padding: 0.6rem 1rem;
        font-size: 0.875rem;
        max-width: 220px;
    }
    
    /* Önceki/Sonraki ok butonları mobilde ortada, yan yana */
    .hero-slider .slider-btn {
        width: 44px;
        height: 44px;
        top: auto;
        bottom: 3.5rem;
        right: auto;
        transform: translateY(0);
    }
    
    .hero-slider .slider-prev {
        left: calc(50% - 48px);
    }
    
    .hero-slider .slider-next {
        left: calc(50% + 8px);
    }
    
    .hero-slider .slider-dots {
        bottom: 1rem;
        gap: 0.4rem;
        justify-content: center;
    }
    
    .hero-slider .dot {
        width: 8px;
        height: 8px;
    }
    
    .scroll-indicator-slider {
        bottom: 2.75rem;
        width: 36px;
        height: 36px;
        font-size: 0.875rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .btn-outline {
        margin-left: 0;
        margin-top: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    /* --- Neden Bizi Seçmeli / Avantajlar – mobil uyumlu --- */
    .why-us {
        padding: var(--space-6) 0;
    }
    
    .why-us .section-title {
        margin-bottom: var(--space-5);
    }
    
    .why-us .section-title .section-badge {
        font-size: 0.8125rem;
    }
    
    .why-us .section-title h2 {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-4);
    }
    
    .why-us-item {
        padding: var(--space-5) var(--space-4);
        text-align: center;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
    }
    
    .why-us-item:hover {
        transform: translateY(-3px);
    }
    
    .why-us-icon {
        width: 48px;
        height: 48px;
        margin: 0 auto var(--space-3);
        font-size: 1.25rem;
    }
    
    .why-us-item h3 {
        font-size: 0.9375rem;
        margin-bottom: var(--space-2);
        line-height: 1.3;
    }
    
    .why-us-item p {
        font-size: 0.8125rem;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .header-pro .logo-pro .logo-img {
        height: 44px;
        max-width: 160px;
    }
    
    .header-pro .logo-pro .logo-text {
        font-size: 1.15rem;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .page-home .hero-corporate.hero-pro {
        padding: 3rem 0 2.5rem;
    }
    
    .page-home .section-corporate .section-title h2 {
        font-size: 1.35rem;
    }
    
    .page-home .stats-corporate .stat-number {
        font-size: 1.5rem;
    }
    
    .hero-slider {
        height: 70vh;
        min-height: 320px;
        max-height: 520px;
    }
    
    .hero-slider .slide-content {
        padding: 1.25rem var(--space-4);
    }
    
    .hero-slider .hero-badge {
        font-size: 0.65rem;
    }
    
    .hero-slider h1 {
        font-size: 1.25rem;
    }
    
    .hero-slider .hero-desc {
        font-size: 0.8125rem;
    }
    
    .hero-slider .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .hero-slider .slider-prev {
        left: calc(50% - 44px);
    }
    
    .hero-slider .slider-next {
        left: calc(50% + 8px);
    }
    
    .hero-slider .slider-dots {
        bottom: 0.75rem;
    }
    
    /* Avantajlar – tek sütun, rahat kartlar */
    .why-us {
        padding: var(--space-5) 0;
    }
    
    .why-us .section-title h2 {
        font-size: 1.35rem;
    }
    
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }
    
    .why-us-item {
        padding: var(--space-5) var(--space-4);
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .why-us-icon {
        width: 52px;
        height: 52px;
        margin-bottom: var(--space-3);
        font-size: 1.35rem;
    }
    
    .why-us-item h3 {
        font-size: 1rem;
    }
    
    .why-us-item p {
        font-size: 0.875rem;
    }
    
    .referanslar-grid {
        gap: 1rem;
    }
    
    .modal-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .cta-content .btn {
        display: inline-block;
        margin: 0.25rem;
    }
}

/* Blog */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.container-narrow {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.page-blog .blog-list.section-pro,
.page-blog .blog-single.section-pro {
    padding: 3rem 0;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}
.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: box-shadow 0.2s, transform 0.2s;
}
.blog-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}
.blog-card-image {
    display: block;
    aspect-ratio: 16/9;
    overflow: hidden;
}
.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog-card-body {
    padding: 1.5rem;
}
.blog-card-body time {
    font-size: 0.8rem;
    color: var(--text-muted, #666);
    display: block;
    margin-bottom: 0.5rem;
}
.blog-card-title {
    font-size: 1.25rem;
    margin: 0 0 0.75rem;
    line-height: 1.3;
}
.blog-card-title a {
    color: inherit;
    text-decoration: none;
}
.blog-card-title a:hover {
    color: var(--primary-yellow, #c9a227);
}
.blog-card-excerpt {
    font-size: 0.95rem;
    color: var(--text-muted, #555);
    margin: 0 0 1rem;
    line-height: 1.5;
}
.blog-card-link {
    font-weight: 600;
    color: var(--primary-yellow, #c9a227);
    text-decoration: none;
    font-size: 0.9rem;
}
.blog-card-link:hover {
    text-decoration: underline;
}
.blog-empty {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text-muted, #666);
    font-size: 1.1rem;
}
.blog-single-image {
    margin-bottom: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
}
.blog-single-image img {
    width: 100%;
    height: auto;
    display: block;
}
.blog-single-header time {
    font-size: 0.9rem;
    color: var(--text-muted, #666);
    display: block;
    margin-bottom: 0.5rem;
}
.blog-single-title {
    font-size: 2rem;
    margin: 0 0 1.5rem;
    line-height: 1.25;
}
.blog-single-content.prose {
    font-size: 1.05rem;
    line-height: 1.75;
}
.blog-single-content.prose p {
    margin-bottom: 1rem;
}
.blog-single-content.prose h2,
.blog-single-content.prose h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}
.blog-back {
    margin-top: 2rem;
}
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .blog-single-title {
        font-size: 1.5rem;
    }
}
