/* ============================================
   Özgeçmiş Atölyesi - Global Design System
   Beyaz ağırlıklı / Turuncu & Mavi aksan
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --blue-50: #eff6ff; --blue-100: #dbeafe; --blue-200: #bfdbfe;
    --blue-500: #3b82f6; --blue-600: #2563eb; --blue-700: #1d4ed8; --blue-900: #1e3a5f;
    --orange-50: #f5f3ff; --orange-100: #ede9fe; --orange-200: #ddd6fe;
    --orange-400: #8b5cf6; --orange-500: #7c3aed; --orange-600: #6d28d9;
    --gray-50: #f8f7f9; --gray-100: #f2eff4; --gray-200: #e5e1e8;
    --gray-300: #d1d5db; --gray-400: #9ca3af; --gray-500: #6b7280;
    --gray-600: #4b5563; --gray-700: #374151; --gray-800: #1f2937; --gray-900: #111827;
    --green-50: #f0fdf4; --green-500: #22c55e; --green-600: #16a34a;
    --red-50: #fef2f2; --red-500: #ef4444; --red-600: #dc2626;
    --white: #fdfcfd;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.04);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.04);
    --radius-sm: 8px; --radius-md: 12px; --radius-lg: 16px; --radius-xl: 24px;
    --transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--gray-50); color: var(--gray-800); line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* === FLASH MESSAGES === */
.flash-container { position: fixed; top: 20px; right: 20px; z-index: 9999; display: flex; flex-direction: column; gap: 8px; }
.flash-msg {
    padding: 14px 20px; border-radius: var(--radius-md); font-size: 0.9rem; font-weight: 500;
    box-shadow: var(--shadow-lg); animation: slideIn 0.3s ease-out;
    display: flex; align-items: center; gap: 10px; min-width: 300px; max-width: 450px;
}
.flash-msg.success { background: var(--green-50); color: var(--green-600); border-left: 4px solid var(--green-500); }
.flash-msg.danger { background: var(--red-50); color: var(--red-600); border-left: 4px solid var(--red-500); }
.flash-msg.warning { background: var(--orange-50); color: var(--orange-600); border-left: 4px solid var(--orange-500); }
.flash-msg.info { background: var(--blue-50); color: var(--blue-600); border-left: 4px solid var(--blue-500); }
@keyframes slideIn { from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: translateX(0); } }

/* ========== PAGE LOADER ========== */
.page-loader {
    position: fixed; inset: 0; z-index: 99999;
    display: flex; align-items: center; justify-content: center;
    background: rgba(253, 252, 253, 0.7);
    backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.loader-content {
    display: flex; flex-direction: column; align-items: center; gap: 24px;
}
.loader-logo {
    height: 100px; width: auto; object-fit: contain;
    animation: pulseLogo 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    filter: drop-shadow(0 10px 20px rgba(124, 58, 237, 0.15));
}
.loader-spinner {
    width: 36px; height: 36px;
    border: 3px solid rgba(124, 58, 237, 0.1);
    border-top-color: #7c3aed;
    border-radius: 50%;
    animation: spinLoader 1s linear infinite;
}
@keyframes spinLoader {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
@keyframes pulseLogo {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(0.95); }
}
.page-loader.loaded {
    opacity: 0; visibility: hidden; pointer-events: none;
}

/* ========== SITE WRAPPER ========== */
.site-wrapper {
    opacity: 0; transform: translateY(12px);
    transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}
.site-wrapper.revealed { opacity: 1; transform: translateY(0); }

/* ========== FOOTER ========== */
.main-footer {
    background: #0f172a;
    color: white;
    padding: 0;
    margin-top: 60px;
    position: relative;
    z-index: 10;
}
.footer-purple-bar {
    height: 6px;
    background: linear-gradient(90deg, #7c3aed, #e5c2ef);
    width: 100%;
}
.footer-container {
    max-width: 1400px; margin: 0 auto; padding: 60px 4% 30px 4%;
}
.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; margin-bottom: 40px;
}
.footer-brand-desc {
    color: var(--gray-400); font-size: 0.95rem; margin-top: 20px; line-height: 1.6; max-width: 320px;
}
.footer-logo { height: 40px; filter: brightness(0) invert(1); object-fit: contain; }
.footer-links h4, .footer-contact h4 {
    font-size: 1.1rem; margin-bottom: 24px; color: white; font-weight: 700;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { color: var(--gray-400); text-decoration: none; transition: 0.3s; font-size: 0.92rem; }
.footer-links a:hover { color: #e5c2ef; }
.footer-contact p { color: var(--gray-400); font-size: 0.92rem; margin-bottom: 12px; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05); padding-top: 30px; text-align: center;
    color: var(--gray-500); font-size: 0.85rem;
}

@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .footer-brand-desc { margin-left: auto; margin-right: auto; }
    .footer-links, .footer-contact { align-items: center; }
}

/* ========== NAVBAR ========== */
.navbar-wrapper {
    position: sticky;
    top: 16px;
    z-index: 1000;
    padding: 0 4%;
    pointer-events: none;
    margin-bottom: 20px;
    transition: top 0.3s ease;
}
.navbar {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: 1px solid transparent;
    border-radius: 4px;
    padding: 10px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    box-shadow: none;
    pointer-events: auto;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}
.navbar.scrolled {
    background: rgba(253, 252, 253, 0.88) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.07), 0 1px 3px rgba(0, 0, 0, 0.04) !important;
}
.navbar .logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}
.navbar .logo img {
    height: 40px;
    display: block;
    transition: transform 0.4s ease;
}
.navbar .logo:hover img {
    transform: scale(1.05) rotate(-1deg);
}
.navbar .nav-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    margin-left: 40px;
}
.navbar .nav-links {
    display: flex;
    gap: 32px;
}
.navbar .nav-link {
    text-decoration: none;
    color: var(--gray-600);
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    padding: 6px 0;
    transition: color 0.3s ease;
}
.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--gray-900);
}
.navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gray-900);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}
.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
    width: 100%;
}
.navbar .nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: auto;
}
.navbar .nav-login {
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 10px 20px;
    border-radius: 4px;
    transition: all 0.3s ease;
    background: transparent;
}
.navbar .nav-login:hover {
    background: rgba(0,0,0,0.04);
    color: var(--gray-900);
}
.navbar .mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1010;
}
.navbar .mobile-menu-toggle .bar {
    width: 100%;
    height: 2.5px;
    background-color: var(--gray-800);
    border-radius: 2px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}

/* ========== MOBILE BOTTOM NAV ========== */
.mobile-bottom-nav {
    display: none;
}

/* CTA Buttons */
.cta-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 22px; border-radius: 4px;
    font-weight: 700; font-size: 0.9rem; text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); border: none; cursor: pointer;
    font-family: inherit;
}
.cta-ghost { color: var(--gray-600); background: transparent; }
.cta-ghost:hover { color: var(--gray-900); background: rgba(0,0,0,0.04); }
.cta-filled {
    background: var(--gray-900); color: white;
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}
.cta-filled:hover {
    background: #2d2d3f; transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.cta-lg { padding: 14px 30px; font-size: 1rem; }

/* ========== STATS TICKER ========== */
.stats-ticker {
    width: 100%; overflow: hidden;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(124, 58, 237, 0.08);
    padding: 14px 0;
    z-index: 50; position: relative;
}
.stats-track {
    display: flex; white-space: nowrap;
    width: max-content;
    animation: tickerMove 50s linear infinite;
}
@keyframes tickerMove {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}
.stats-track span {
    font-size: 0.95rem; font-weight: 800; color: #64748b;
    padding: 0 60px; letter-spacing: 2px;
    display: flex; align-items: center;
}
.stats-sep { color: #cbd5e1; font-size: 1.2rem; margin-top: -2px; }

/* ========== SCROLL TO TOP ========== */
#backToTop {
    position: fixed; bottom: 30px; right: 30px;
    width: 45px; height: 45px;
    background: #7c3aed; color: white;
    border: none; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; z-index: 1000;
    opacity: 0; visibility: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}
#backToTop.show { opacity: 1; visibility: visible; }
#backToTop:hover { transform: translateY(-5px); background: #6d28d9; }

/* ========== HERO ========== */
@keyframes mistFloat {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-2%, 2%) scale(1.05); }
    100% { transform: translate(1%, -1%) scale(0.98); }
}

.hero-section {
    min-height: calc(100vh - 100px);
    display: flex; align-items: center;
    padding: 0 4%; overflow: hidden;
    position: relative;
    background-color: #f1f5f9; /* Slightly darker base */
    background-image: 
        radial-gradient(at 10% 20%, rgba(229, 194, 239, 0.4) 0px, transparent 50%),
        radial-gradient(at 90% 80%, rgba(124, 58, 237, 0.2) 0px, transparent 50%),
        radial-gradient(at 50% 50%, rgba(226, 232, 240, 0.8) 0px, transparent 70%),
        radial-gradient(at 80% 10%, rgba(59, 130, 246, 0.1) 0px, transparent 40%);
}

.hero-section::before {
    content: "";
    position: absolute;
    top: -20%; left: -20%; width: 140%; height: 140%;
    background: radial-gradient(circle at center, rgba(229, 194, 239, 0.25) 0%, transparent 60%);
    filter: blur(100px);
    z-index: 0;
    pointer-events: none;
    animation: mistFloat 15s ease-in-out infinite alternate;
}
.hero-grid {
    display: grid; grid-template-columns: 1.2fr 2.5fr 1.5fr 4.5fr;
    gap: 30px; width: 100%; max-width: 1600px;
    margin: 0 auto; min-height: 460px;
    align-items: stretch;
}

/* Col 1: Logo */
.hero-col-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-right: 2px solid #e5c2ef;
    padding-right: 20px;
}
.hero-logo { height: 320px; width: 320px; object-fit: contain; display: block; }
.hero-logo-brand {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gray-400);
    white-space: nowrap;
    text-align: center;
}

/* Col 2: Slogan */
.hero-left {
    display: flex; flex-direction: column; justify-content: center;
    padding-left: 10px;
}
.hero-mobile-logo {
    display: none;
}
.hero-heading {
    font-size: clamp(2.5rem, 4.2vw, 4.4rem); font-weight: 900;
    line-height: 1.05; color: #0f172a; margin-bottom: 24px;
    letter-spacing: -2px;
}
.hero-accent {
    background: linear-gradient(135deg, #7c3aed 0%, #4f46e5 50%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-style: italic;
    font-weight: 900;
    display: inline-block;
}
.hero-desc {
    font-size: 1.05rem; color: var(--gray-500); line-height: 1.7;
    margin-bottom: 32px; max-width: 420px;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero Center — Service Cards */
.hero-center {
    display: flex; flex-direction: column; justify-content: center; gap: 12px;
}
.svc-card {
    display: flex; align-items: center; gap: 16px;
    padding: 20px 24px; border-radius: 20px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    text-decoration: none; color: var(--gray-800);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}
.svc-card:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(124, 58, 237, 0.3);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.1);
}
.svc-number {
    font-size: 0.7rem; font-weight: 800; color: #7c3aed;
    background: rgba(124, 58, 237, 0.1);
    width: 28px; height: 28px; display: flex; align-items: center; justify-content: center;
    border-radius: 8px; flex-shrink: 0;
}
.svc-name { flex: 1; font-weight: 700; font-size: 0.95rem; color: var(--gray-900); }
.svc-arrow {
    color: var(--gray-300); font-size: 1.1rem;
    transition: all 0.3s ease;
}
.svc-card:hover .svc-arrow { color: #7c3aed; transform: translateX(4px); }

/* Hero Right — Blog Slider */
.hero-right {
    border-radius: 24px; overflow: hidden; position: relative;
    box-shadow: 0 20px 50px -12px rgba(0,0,0,0.2);
    height: 460px;
}
.blog-slider {
    display: flex; height: 100%;
    transition: transform 0.7s cubic-bezier(0.65, 0, 0.35, 1);
    cursor: grab;
    user-select: none;
}
.blog-slider:active { cursor: grabbing; }
.slide { min-width: 100%; height: 100%; position: relative; background: #0f172a; user-select: none; }
.slide-img {
    width: 100%; height: 100%; object-fit: cover; opacity: 0.65;
    transition: transform 5s linear;
}
.slide.active .slide-img { transform: scale(1.06); }
.slide-img-placeholder {
    background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
    background-size: 200% 200%; animation: splashGrad 6s ease infinite;
}
.slide-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(15,23,42,0.92) 0%, rgba(15,23,42,0.3) 55%, transparent 100%);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 32px 32px; color: white;
}
.slide-badge {
    background: rgba(255,255,255,0.12); backdrop-filter: blur(8px);
    padding: 5px 14px; border-radius: 4px; font-size: 0.72rem;
    font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
    width: fit-content; margin-bottom: 16px;
    border: 1px solid rgba(255,255,255,0.15);
}
.slide-title { font-size: 1.8rem; font-weight: 800; line-height: 1.3; margin-bottom: 10px; }
.slide-meta { font-size: 0.95rem; color: rgba(255,255,255,0.9); margin-bottom: 24px; font-weight: 500; }
.slide-cta {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 12px 24px; background: white; color: var(--gray-900);
    border-radius: 4px; font-weight: 700; font-size: 0.9rem;
    text-decoration: none; width: fit-content;
    transition: all 0.3s ease;
}
.slide-cta:hover {
    background: var(--gray-900); color: white;
    transform: translateY(-1px); box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}
.slider-dots {
    position: absolute; bottom: 40px; right: 40px;
    display: flex; gap: 10px; z-index: 10;
}
.dot {
    width: 9px; height: 9px; border-radius: 50%; border: none;
    background: rgba(255,255,255,0.3); cursor: pointer;
    transition: all 0.3s ease; padding: 0;
}
.dot:hover { background: rgba(255,255,255,0.6); }
.dot.active { background: white; transform: scale(1.4); box-shadow: 0 0 12px rgba(255,255,255,0.4); }

/* ========== COOKIE BANNER ========== */
.cookie-banner {
    position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
    z-index: 9998; max-width: 640px; width: calc(100% - 40px);
    background: var(--gray-900); color: rgba(255,255,255,0.85);
    border-radius: 20px; padding: 20px 28px;
    display: flex; align-items: center; justify-content: space-between; gap: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    animation: cookieSlide 0.5s ease-out;
}
.cookie-banner.hidden { display: none; }
.cookie-text { display: flex; align-items: flex-start; gap: 12px; flex: 1; }
.cookie-text span { font-size: 1.4rem; flex-shrink: 0; }
.cookie-text p { font-size: 0.85rem; line-height: 1.5; margin: 0; }
.cookie-text a { color: #e5c2ef; text-decoration: underline; }
.cookie-actions { display: flex; gap: 8px; flex-shrink: 0; }
.cookie-btn {
    padding: 8px 18px; border-radius: 4px; font-weight: 700;
    font-size: 0.82rem; border: none; cursor: pointer;
    font-family: inherit; transition: all 0.2s ease;
}
.cookie-accept { background: white; color: var(--gray-900); }
.cookie-accept:hover { background: #e5c2ef; }
.cookie-decline { background: transparent; color: rgba(255,255,255,0.5); border: 1px solid rgba(255,255,255,0.15); }
.cookie-decline:hover { color: white; border-color: rgba(255,255,255,0.4); }
@keyframes cookieSlide { from { opacity: 0; transform: translateX(-50%) translateY(20px); } to { opacity: 1; transform: translateX(-50%) translateY(0); } }

/* Legacy compat aliases */
/* Legacy compat classes removed */
.nav-login:hover {
    background: rgba(0,0,0,0.04); color: var(--gray-900);
}

/* === BUTTONS === */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 10px 22px; border-radius: var(--radius-md); font-weight: 600; font-size: 0.9rem;
    text-decoration: none; border: none; cursor: pointer; transition: var(--transition);
    font-family: inherit; line-height: 1.4;
}
.btn-primary { background: #111827; color: white; box-shadow: 0 4px 14px rgba(0,0,0,0.12); }
.btn-primary:hover { background: #1f2937; transform: translateY(-1px); box-shadow: 0 8px 20px rgba(0,0,0,0.18); }
.btn-orange { background: #111827; color: white; box-shadow: 0 4px 14px rgba(0,0,0,0.12); }
.btn-orange:hover { background: #1f2937; transform: translateY(-1px); box-shadow: 0 8px 20px rgba(0,0,0,0.18); }
.btn-outline { background: transparent; color: var(--gray-600); border: 1.5px solid var(--gray-200); }
.btn-outline:hover { border-color: var(--blue-500); color: var(--blue-600); background: var(--blue-50); }
.btn-danger { background: var(--red-500); color: white; }
.btn-danger:hover { background: var(--red-600); }
.btn-sm { padding: 6px 14px; font-size: 0.8rem; border-radius: var(--radius-sm); }
.btn-lg { padding: 14px 32px; font-size: 1rem; border-radius: var(--radius-lg); }
.btn-block { width: 100%; }

/* === CARDS === */
.card {
    background: var(--white); border-radius: var(--radius-xl); padding: 28px;
    box-shadow: var(--shadow-sm); border: 1px solid var(--gray-100); transition: var(--transition);
}
.card:hover { box-shadow: var(--shadow-md); }
.card-title { font-size: 1.1rem; font-weight: 700; color: var(--gray-900); margin-bottom: 16px; }

/* === FORM ELEMENTS === */
.form-group { margin-bottom: 20px; }
.form-label { display: block; margin-bottom: 6px; font-weight: 600; font-size: 0.875rem; color: var(--gray-700); }
.form-input, .form-select, .form-textarea {
    width: 100%; padding: 11px 16px; border: 1.5px solid var(--gray-200); border-radius: var(--radius-md);
    font-size: 0.95rem; font-family: inherit; transition: var(--transition); background: var(--white);
    color: var(--gray-800); outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: var(--blue-500); box-shadow: 0 0 0 3px rgba(59,130,246,0.12);
}
.form-textarea { resize: vertical; min-height: 100px; }
.form-input::placeholder { color: var(--gray-400); }
.form-checkbox-wrap { display: flex; align-items: center; gap: 10px; }
.form-checkbox {
    width: 18px; height: 18px; accent-color: var(--blue-600); cursor: pointer;
}

/* === STATUS BADGES === */
.badge {
    display: inline-flex; align-items: center; gap: 6px; padding: 5px 14px;
    border-radius: 50px; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.02em;
}
.badge-waiting { background: var(--orange-100); color: var(--orange-600); }
.badge-progress { background: var(--blue-100); color: var(--blue-600); }
.badge-done { background: var(--green-50); color: var(--green-600); }
.badge-cancelled { background: var(--red-50); color: var(--red-500); }

/* === SIDEBAR LAYOUT (Dashboard) === */
.app-layout { display: flex; min-height: 100vh; background: #f9fafb; }
.sidebar {
    width: 260px; background: #0f172a; border-right: none;
    position: fixed; top: 0; left: 0; height: 100vh; padding: 24px 16px;
    display: flex; flex-direction: column; z-index: 100;
}
.sidebar .logo { display: flex; align-items: center; gap: 10px; text-decoration: none; padding: 0 12px; margin-bottom: 32px; filter: brightness(0) invert(1); }
.sidebar .logo-text { font-size: 1.2rem; font-weight: 800; color: #ffffff; }
.sidebar .logo-text span { color: #94a3b8; }
.sidebar-nav { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.sidebar-nav a, .sidebar-nav .nav-section-title {
    display: flex; align-items: center; gap: 12px; padding: 10px 14px;
    border-radius: var(--radius-md); text-decoration: none; color: rgba(255,255,255,0.65);
    font-weight: 500; font-size: 0.9rem; transition: var(--transition);
}
.sidebar-nav a:hover { background: rgba(255,255,255,0.05); color: #ffffff; }
.sidebar-nav a.active { background: rgba(255,255,255,0.1); color: #ffffff; font-weight: 600; }
.sidebar-nav .nav-section-title {
    font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em;
    color: rgba(255,255,255,0.3); font-weight: 700; margin-top: 16px; padding-bottom: 4px; cursor: default;
}
.sidebar-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 16px;
    margin-top: auto;
}
.sidebar-bottom .user-name {
    padding: 0 14px 8px 14px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 500;
}
.sidebar-bottom a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: var(--transition);
}
.sidebar-bottom a:hover {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}
.main-content { flex: 1; margin-left: 260px; padding: 32px 40px; max-width: 100%; }
.page-header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 28px; flex-wrap: wrap; gap: 16px;
}
.page-title { font-size: 1.6rem; font-weight: 800; color: var(--gray-900); }
.page-subtitle { color: var(--gray-500); font-size: 0.9rem; margin-top: 4px; }

/* === DATA TABLES === */
.data-table { width: 100%; border-collapse: collapse; }
.data-table thead th {
    text-align: left; padding: 12px 16px; font-size: 0.75rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.05em; color: var(--gray-400);
    border-bottom: 1px solid var(--gray-100);
}
.data-table tbody td {
    padding: 14px 16px; font-size: 0.9rem; border-bottom: 1px solid var(--gray-50);
    color: var(--gray-700);
}
.data-table tbody tr { transition: var(--transition); }
.data-table tbody tr:hover { background: var(--gray-50); }

/* === SERVICE TYPE CARDS (ITSM Grid) === */
.service-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; }
.service-card {
    background: var(--white); border: 1.5px solid var(--gray-100); border-radius: var(--radius-xl);
    padding: 28px 24px; text-align: center; cursor: pointer; transition: var(--transition);
    text-decoration: none; color: inherit; display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.service-card:hover { border-color: var(--blue-200); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card .icon { font-size: 2.5rem; }
.service-card .name { font-weight: 700; font-size: 1rem; color: var(--gray-800); }
.service-card .desc { font-size: 0.8rem; color: var(--gray-500); line-height: 1.5; }

/* === TICKET DETAIL === */
.ticket-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; flex-wrap: wrap; }
.ticket-meta { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 12px; }
.ticket-meta-item { font-size: 0.85rem; color: var(--gray-500); }
.ticket-meta-item strong { color: var(--gray-700); }

.comment-list { display: flex; flex-direction: column; gap: 16px; }
.comment-item { display: flex; gap: 12px; }
.comment-avatar {
    width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center;
    justify-content: center; font-weight: 700; font-size: 0.8rem; color: white; flex-shrink: 0;
}
.comment-avatar.admin { background: var(--blue-600); }
.comment-avatar.user { background: var(--orange-500); }
.comment-body { flex: 1; }
.comment-author { font-weight: 600; font-size: 0.85rem; color: var(--gray-800); }
.comment-date { font-size: 0.75rem; color: var(--gray-400); margin-left: 8px; }
.comment-text { margin-top: 4px; font-size: 0.9rem; color: var(--gray-600); line-height: 1.6; }

/* === FILE UPLOAD === */
.file-drop {
    border: 2px dashed var(--gray-200); border-radius: var(--radius-lg); padding: 28px;
    text-align: center; cursor: pointer; transition: var(--transition); background: var(--gray-50);
}
.file-drop:hover { border-color: var(--blue-400); background: var(--blue-50); }
.file-drop p { color: var(--gray-500); font-size: 0.9rem; }
.file-drop .icon { font-size: 2rem; margin-bottom: 8px; }

/* === BLOG === */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 28px; }
.blog-card {
    background: var(--white); border-radius: var(--radius-xl); overflow: hidden;
    box-shadow: var(--shadow-sm); border: 1px solid var(--gray-100); transition: var(--transition);
    text-decoration: none; color: inherit; display: block;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card-img {
    width: 100%; height: 200px; object-fit: cover; background: var(--gray-100);
}
.blog-card-body { padding: 24px; }
.blog-card-title { font-size: 1.15rem; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; }
.blog-card-excerpt { font-size: 0.9rem; color: var(--gray-500); line-height: 1.6; margin-bottom: 12px; }
.blog-card-date { font-size: 0.8rem; color: var(--gray-400); }

.blog-content { max-width: 760px; margin: 0 auto; }
.blog-content h1 { font-size: 2.2rem; font-weight: 800; color: var(--gray-900); margin-bottom: 16px; line-height: 1.3; }
.blog-content img { max-width: 100%; border-radius: var(--radius-md); margin: 20px 0; }
.blog-content p { margin-bottom: 16px; color: var(--gray-700); line-height: 1.8; }

/* === PREMIUM HOME LAYOUT === */
.premium-home-wrapper {
    min-height: calc(100vh - 72px);
    display: flex;
    align-items: center;
    padding: 0 4%;
    position: relative;
    overflow: hidden;
    background-color: transparent;
}

/* Ambient Background */
.ambient-bg {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: -1;
    overflow: hidden;
    background: #f8fafc;
}
.ambient-blob-1 {
    position: absolute;
    top: -20%; left: -10%;
    width: 60vw; height: 60vw;
    background: radial-gradient(circle, rgba(59,130,246,0.15) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    filter: blur(60px);
    animation: float-blob 15s ease-in-out infinite alternate;
}
.ambient-blob-2 {
    position: absolute;
    bottom: -20%; right: -10%;
    width: 70vw; height: 70vw;
    background: radial-gradient(circle, rgba(249,115,22,0.12) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    filter: blur(80px);
    animation: float-blob 20s ease-in-out infinite alternate-reverse;
}
@keyframes float-blob {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(3%, 3%) scale(1.05); }
}

.premium-grid {
    display: grid;
    grid-template-columns: 3fr 1.5fr 5fr;
    gap: 40px;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    height: 600px;
}

/* Left Column */
.p-col-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 20px;
}
.p-tag {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(37, 99, 235, 0.08);
    color: var(--blue-600);
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
    width: fit-content;
    border: 1px solid rgba(37, 99, 235, 0.15);
}
.p-title {
    font-size: clamp(2.5rem, 3.5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--gray-900);
    margin-bottom: 24px;
    letter-spacing: -1px;
}
.text-gradient {
    background: linear-gradient(135deg, var(--blue-600), var(--orange-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.p-subtitle {
    font-size: 1.1rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 95%;
}
.p-actions {
    display: flex;
    gap: 16px;
}
.btn-premium {
    padding: 16px 32px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 10px;
}
.btn-premium-primary {
    background: linear-gradient(135deg, var(--gray-900), var(--gray-800));
    color: white;
    box-shadow: 0 8px 20px -6px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.15);
    border: 1px solid rgba(0,0,0,0.8);
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.btn-premium-primary::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, var(--blue-600), var(--orange-500));
    opacity: 0; z-index: -1; transition: opacity 0.4s ease;
}
.btn-premium-primary:hover::before {
    opacity: 1;
}
.btn-premium-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px -6px rgba(229, 194, 239, 0.6);
    border-color: transparent;
}

/* Center Column */
.p-col-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
}
.p-service-pill {
    background: linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.8) 100%);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.9);
    border-radius: 24px;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 18px;
    text-decoration: none;
    color: var(--gray-800);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 24px -6px rgba(0,0,0,0.04), inset 0 2px 4px rgba(255,255,255,0.5);
    position: relative;
    overflow: hidden;
}
.p-service-pill::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 4px; height: 100%;
    background: var(--orange-500);
    transform: scaleY(0);
    transition: transform 0.4s ease;
    transform-origin: bottom;
}
.p-service-pill:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.08), inset 0 2px 4px rgba(255,255,255,0.8);
    border-color: rgba(229, 194, 239, 0.6);
}
.p-service-pill:hover::before {
    transform: scaleY(1);
}
.p-service-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--blue-50), white);
    border: 1px solid var(--blue-100);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    transition: all 0.4s ease;
    box-shadow: 0 4px 10px rgba(37,99,235,0.05);
}
.p-service-pill:hover .p-service-icon {
    background: linear-gradient(135deg, var(--orange-100), white);
    border-color: var(--orange-200);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(229, 194, 239, 0.3);
}
.p-service-text {
    flex: 1;
}
.p-service-title {
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 2px;
}
.p-service-arrow {
    color: var(--gray-400);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}
.p-service-pill:hover .p-service-arrow {
    color: var(--orange-500);
    transform: translateX(4px);
}

/* Right Column (Massive Carousel) */
.p-col-right {
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}
.p-carousel-inner {
    display: flex;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.8, 0, 0.2, 1);
}
.p-carousel-item {
    min-width: 100%;
    height: 100%;
    position: relative;
    background: #0f172a;
}
.p-carousel-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: transform 6s linear;
}
.p-carousel-item.active .p-carousel-img {
    transform: scale(1.05);
}
.p-carousel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,23,42,0.95) 0%, rgba(15,23,42,0.4) 50%, rgba(15,23,42,0.1) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 60px 50px;
    color: white;
}
.p-carousel-tag {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    width: fit-content;
    border: 1px solid rgba(255,255,255,0.2);
}
.p-carousel-title {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 16px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.p-carousel-meta {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 30px;
}
.p-carousel-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: white;
    color: var(--gray-900);
    border-radius: 4px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    width: fit-content;
}
.p-carousel-btn:hover {
    background: var(--blue-600);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37,99,235,0.3);
}
.p-carousel-nav {
    position: absolute;
    bottom: 50px;
    right: 50px;
    display: flex;
    gap: 12px;
    z-index: 10;
}
.p-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.4s ease;
}
.p-dot:hover {
    background: rgba(255,255,255,0.6);
}
.p-dot.active {
    background: white;
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(255,255,255,0.5);
}



/* === SECTIONS === */
.section { padding: 80px 5%; }
.section-title { font-size: 2rem; font-weight: 800; text-align: center; color: var(--gray-900); margin-bottom: 12px; }
.section-subtitle { text-align: center; color: var(--gray-500); margin-bottom: 48px; font-size: 1rem; }

/* === FOOTER === */
.footer {
    background: var(--gray-900); color: var(--gray-400); padding: 40px 5%;
    text-align: center; font-size: 0.85rem;
}
.footer a { color: var(--orange-400); text-decoration: none; }

/* === AUTH PAGES === */
.auth-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 24px; flex-direction: column; gap: 16px; }
.auth-card { width: 100%; max-width: 460px; background: var(--white); padding: 40px; border-radius: var(--radius-xl); box-shadow: var(--shadow-xl); }
.auth-card .logo { display: block; text-align: center; margin-bottom: 8px; text-decoration: none; }
.auth-card .logo-text { font-size: 1.6rem; font-weight: 800; color: var(--blue-700); }
.auth-card .logo-text span { color: var(--orange-500); }
.auth-card h2 { text-align: center; margin-bottom: 28px; color: var(--gray-800); font-size: 1.3rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .full-width { grid-column: span 2; }
.auth-link { text-align: center; margin-top: 20px; font-size: 0.9rem; color: var(--gray-500); }
.auth-link a { color: var(--blue-600); text-decoration: none; font-weight: 600; }

/* === EMPTY STATE === */
.empty-state { text-align: center; padding: 48px 20px; color: var(--gray-400); }
.empty-state .icon { font-size: 3rem; margin-bottom: 12px; }
.empty-state p { font-size: 0.95rem; }

/* === REQUEST LIST ITEM === */
.request-item {
    display: flex; justify-content: space-between; align-items: center;
    padding: 18px 0; border-bottom: 1px solid var(--gray-50); gap: 12px;
}
.request-item:last-child { border-bottom: none; }
.request-info h4 { font-weight: 600; font-size: 0.95rem; color: var(--gray-800); margin-bottom: 4px; }
.request-info p { font-size: 0.8rem; color: var(--gray-400); }
.request-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        height: auto;
        min-height: auto;
        gap: 20px;
    }
    .hero-col-logo { order: 1; border-right: 1px solid var(--gray-200); }
    .hero-left { order: 2; }
    .hero-center { order: 3; }
    .hero-right {
        order: 4;
        grid-column: span 2;
        height: 400px;
    }
}

@media (max-width: 768px) {
    /* Navbar Mobile Styles */
    .navbar-wrapper {
        top: 12px;
        padding: 0 16px;
        pointer-events: none;
    }
    .navbar {
        padding: 10px 20px;
        border-radius: 24px;
        pointer-events: auto;
    }
    .navbar .logo img {
        height: 34px;
    }
    .navbar .mobile-menu-toggle {
        display: flex;
    }
    .navbar .nav-menu {
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        background: rgba(253, 252, 253, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(0, 0, 0, 0.06);
        border-radius: 20px;
        padding: 24px;
        flex-direction: column;
        gap: 20px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.07);
        opacity: 0;
        transform: translateY(-10px);
        pointer-events: none;
        transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        margin: 0;
    }
    .navbar.open .nav-menu {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }
    .navbar .nav-links {
        flex-direction: column;
        gap: 16px;
        align-items: center;
        width: 100%;
    }
    .navbar .nav-link {
        font-size: 1rem;
        padding: 4px 0;
    }
    .navbar .nav-actions {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        margin-left: 0;
        padding-top: 16px;
        border-top: 1px solid rgba(0, 0, 0, 0.07);
    }
    .navbar .nav-actions .nav-login,
    .navbar .nav-actions .btn-premium {
        width: 100%;
        text-align: center;
        justify-content: center;
        font-size: 0.9rem;
        padding: 12px 24px !important;
        border-radius: 12px !important;
    }
    .navbar .nav-actions .nav-login {
        color: var(--gray-700) !important;
        background: rgba(0, 0, 0, 0.04) !important;
        border: 1px solid rgba(0, 0, 0, 0.08) !important;
    }
    .navbar .nav-actions .btn-premium {
        background: var(--gray-900) !important;
        color: white !important;
    }
    /* Hamburger Line Anim */
    .navbar.open .mobile-menu-toggle .bar:nth-child(1) {
        transform: translateY(7.75px) rotate(45deg);
    }
    .navbar.open .mobile-menu-toggle .bar:nth-child(2) {
        opacity: 0;
    }
    .navbar.open .mobile-menu-toggle .bar:nth-child(3) {
        transform: translateY(-7.75px) rotate(-45deg);
    }
    
    .stats-ticker { padding: 6px 0; background: rgba(255, 255, 255, 0.2); }
    .stats-track { animation-duration: 50s; }
    .stats-track span { font-size: 0.8rem; padding: 0 30px; letter-spacing: 1px; color: #64748b; }
    .stats-sep { font-size: 1rem; color: #cbd5e1; }

    /* Hero Section Mobile */
    .hero-section {
        padding: 10px 12px;
        min-height: auto;
        display: block;
    }
    .hero-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
        height: auto;
        min-height: auto;
    }

    /* Logo Column Mobile (Gizliyoruz) */
    .hero-col-logo {
        display: none !important;
    }

    .hero-heading-wrapper {
        display: flex !important;
        align-items: center !important;
        gap: 12px !important;
        width: 100% !important;
        justify-content: flex-start !important;
        text-align: left !important;
        margin-bottom: 8px !important;
    }
    .hero-mobile-logo {
        display: block !important;
        width: 60px !important;
        height: 60px !important;
        object-fit: contain !important;
        flex-shrink: 0 !important;
        filter: drop-shadow(0 4px 12px rgba(124, 58, 237, 0.12));
    }

    .hero-left {
        padding-top: 0;
        text-align: left !important;
        align-items: flex-start !important;
        display: flex;
        flex-direction: column;
    }
    .hero-heading {
        font-size: 1.5rem !important;
        line-height: 1.2 !important;
        text-align: left !important;
        margin-bottom: 0 !important;
        letter-spacing: -0.8px !important;
    }
    .hero-heading br {
        display: none !important;
    }
    .hero-heading .hero-accent {
        font-size: 1.1em !important;
        margin: 0 4px !important;
        transform: rotate(-2deg);
    }
    .hero-desc {
        text-align: left !important;
        font-size: 0.85rem !important;
        line-height: 1.5 !important;
        margin: 10px 0 16px 0 !important;
        max-width: 100% !important;
    }
    .hero-buttons {
        width: 100% !important;
        justify-content: flex-start !important;
        gap: 12px !important;
    }
    .hero-buttons .cta-btn {
        width: auto !important;
        flex: 1 !important;
        justify-content: center !important;
        padding: 12px 16px !important;
        font-size: 0.85rem !important;
    }

    /* Services Center Mobile */
    .hero-center {
        gap: 10px;
        width: 100%;
    }
    .svc-card { padding: 12px 16px; border-radius: 14px; gap: 12px; }
    .svc-icon { font-size: 1.2rem; }
    .svc-name { font-size: 0.85rem; }

    /* Blog Slider Mobile */
    .hero-right {
        display: none !important;
    }

    /* Cookie Banner Mobile */
    .cookie-banner {
        padding: 12px 16px;
        bottom: 80px;
        border-radius: 16px;
    }
    .cookie-text p { font-size: 0.8rem; }
    .cookie-btn { padding: 10px; font-size: 0.8rem; }

    /* Footer Mobile */
    .main-footer { z-index: 9999; } /* Ensure it's above everything */
    .footer-purple-bar { height: 8px; }
    .footer-content { padding: 8px 0; }
    .footer-text { font-size: 0.6rem; letter-spacing: 0.5px; }

    /* Hakkimizda Page Mobile */
    main.section { 
        padding: 24px 16px !important; 
        margin: 10px auto !important;
    }
    main.section h1 { font-size: 1.6rem !important; margin-bottom: 16px !important; }
    main.section p { font-size: 0.95rem !important; line-height: 1.6 !important; }
    main.section div[style*="padding: 40px"] { padding: 20px !important; }

    /* How It Works Mobile */
    .hiw-track { 
        flex-direction: column !important; 
        align-items: center !important; 
        width: 100% !important; 
        gap: 20px !important;
        margin: 0 auto !important;
    }
    .hiw-item { 
        width: 100% !important; 
        max-width: 280px !important; 
        padding: 20px !important; 
        border-radius: 20px !important;
    }
    .hiw-number { 
        width: 44px !important; 
        height: 44px !important; 
        font-size: 1.2rem !important; 
        margin-bottom: 12px !important; 
    }
    .hiw-item h3 { font-size: 1rem !important; margin-bottom: 8px !important; }
    .hiw-item p { font-size: 0.85rem !important; }

    /* Dashboard & Sidebar Mobile */
    .app-layout { flex-direction: column; }
    .sidebar { display: none !important; }
    .mobile-header {
        display: flex !important; align-items: center; justify-content: space-between;
        padding: 14px 20px;
        background: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        border-bottom: 1px solid rgba(0,0,0,0.06);
        position: sticky; top: 0; z-index: 1000;
        box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    }
    .mobile-header .logo img { height: 34px; width: auto; object-fit: contain; }
    .mobile-header .logo-text { display: none; }
    
    .main-content { 
        margin-left: 0 !important; 
        padding: 16px 12px !important; 
        width: 100% !important; 
        max-width: 100% !important;
        box-sizing: border-box;
    }
    .page-header { flex-direction: column; align-items: flex-start; gap: 12px; margin-bottom: 20px; }
    .page-title { font-size: 1.25rem !important; }
    .page-subtitle { font-size: 0.8rem; }
    
    /* Stats Grid */
    .app-layout div[style*="display:grid"] { 
        grid-template-columns: 1fr 1fr !important; 
        gap: 10px !important;
    }
    .card { padding: 16px !important; border-radius: 16px !important; overflow: hidden; }
    
    /* Request Items */
    .request-item { 
        padding: 14px 0;
        flex-wrap: wrap;
    }
    .request-info { min-width: 0; flex: 1; }
    .request-info h4 { font-size: 0.85rem; word-break: break-word; }
    .request-info p { font-size: 0.75rem; }
    .request-actions { gap: 6px; flex-shrink: 0; }
    .request-actions .btn-sm { padding: 4px 8px; font-size: 0.65rem; }
    
    /* Ticket Details */
    .ticket-header { flex-direction: column; gap: 12px; }
    .ticket-meta { flex-direction: column; gap: 4px; }
    .ticket-meta-item { font-size: 0.75rem; }
    
    /* Form Data Rows */
    .app-layout div[style*="display:flex"][style*="padding:10px 0"] {
        flex-direction: column !important;
        gap: 4px !important;
    }
    .app-layout div[style*="min-width:160px"] {
        min-width: unset !important;
        font-size: 0.75rem !important;
    }
    
    /* Forms & Buttons */
    .form-grid { grid-template-columns: 1fr; }
    .form-grid .full-width { grid-column: span 1; }
    .mobile-header .btn { width: auto; }
    
    .service-grid { grid-template-columns: 1fr 1fr !important; gap: 10px !important; }
    .service-card { padding: 16px 10px !important; }
    .service-card .icon { font-size: 1.8rem; }
    .service-card .name { font-size: 0.8rem; }
    .service-card .desc { font-size: 0.68rem; }

    /* Auth Pages Mobile */
    .auth-page { padding: 16px; }
    .auth-card { padding: 28px 20px !important; max-width: 100%; }
    .auth-card h2 { font-size: 1.1rem; }

    /* Blog Page Mobile */
    .blog-grid { grid-template-columns: 1fr !important; }
    
    /* Data Tables Mobile */
    .data-table { font-size: 0.8rem; }
    .data-table thead th { padding: 8px 10px; font-size: 0.65rem; }
    .data-table tbody td { padding: 10px; font-size: 0.8rem; }

    /* Navbar Legacy Mobile styles removed */
    
    /* Mobil Alt Navigasyon Barı (Bottom Tab Bar) Stilleri */
    .mobile-bottom-nav {
        display: flex !important;
        position: fixed !important;
        bottom: max(20px, env(safe-area-inset-bottom, 20px)) !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: calc(100% - 32px) !important;
        max-width: 400px !important;
        height: 64px !important;
        background: rgba(253, 252, 253, 0.78) !important;
        backdrop-filter: blur(24px) !important;
        -webkit-backdrop-filter: blur(24px) !important;
        border: 1px solid rgba(0, 0, 0, 0.08) !important;
        border-radius: 100px !important;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.05) !important;
        z-index: 2147483647 !important;
        justify-content: space-around;
        align-items: center;
        padding: 0 10px;
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        animation: mobileNavSlideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards !important;
    }
    
    .mobile-bottom-nav-link {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: var(--gray-500);
        text-decoration: none;
        font-size: 0.7rem;
        font-weight: 700;
        gap: 4px;
        flex: 1;
        height: 100%;
        position: relative;
        transition: all 0.25s ease;
        -webkit-tap-highlight-color: transparent;
    }
    
    .mobile-bottom-nav-link .nav-icon {
        stroke: var(--gray-500);
        transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), stroke 0.25s ease;
    }
    
    .mobile-bottom-nav-link:hover .nav-icon,
    .mobile-bottom-nav-link.active .nav-icon {
        stroke: var(--gray-900) !important;
        transform: translateY(-2px) scale(1.15) !important;
        filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.15));
    }
    
    .mobile-bottom-nav-link span {
        transition: color 0.25s ease;
    }
    
    .mobile-bottom-nav-link:hover span,
    .mobile-bottom-nav-link.active span {
        color: var(--gray-900) !important;
    }
    
    .mobile-bottom-nav-link.active::after {
        content: '';
        position: absolute;
        bottom: 5px;
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background: var(--gray-800);
        box-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
    }

    body {
        padding-bottom: 100px !important;
    }
    
    .navbar-wrapper {
        display: none !important;
    }

    #backToTop {
        display: flex !important;
        bottom: 90px;
        right: 20px;
        width: 42px;
        height: 42px;
        background: #111827;
        box-shadow: 0 4px 16px rgba(0,0,0,0.22);
    }
}

/* ========== SAYFA GEÇİŞ ANİMASYONU ========== */
@keyframes smoothPageLoad {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Sayfa geçiş animasyonunu body'den kaldırıyoruz çünkü body'ye transform/animation uygulamak mobil tarayıcılarda position:fixed elemanları bozuyor */
body > *:not(.mobile-bottom-nav):not(#page-transition-overlay):not(.page-loader) {
    animation: smoothPageLoad 0.4s ease-in forwards;
}

@keyframes mobileNavSlideUp {
    0% {
        transform: translate(-50%, 80px) !important;
        opacity: 0;
    }
    100% {
        transform: translate(-50%, 0) !important;
        opacity: 1;
    }
}

@media (max-width: 480px) {
    .hero-heading { font-size: 1.8rem; }
    .top-left-logo { height: 80px; width: 80px; }
    .service-grid { grid-template-columns: 1fr 1fr !important; gap: 8px !important; }
    
    .app-layout div[style*="display:grid"] { 
        grid-template-columns: 1fr !important; 
    }
    
    .request-item { flex-direction: column; align-items: flex-start; gap: 8px; }
    .request-actions { width: 100%; justify-content: flex-start; border-top: 1px solid var(--gray-50); padding-top: 8px; }
    
    .auth-card { padding: 20px 16px !important; }
}

/* Mobile header hidden by default (shown via media query) */
.mobile-header { display: none; }

/* === BLOG CAROUSEL (Home Page) === */
.blog-carousel { display: flex; gap: 24px; overflow-x: auto; padding-bottom: 16px; scroll-snap-type: x mandatory; }
.blog-carousel::-webkit-scrollbar { height: 6px; }
.blog-carousel::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: 3px; }
.blog-carousel .blog-card { min-width: 320px; scroll-snap-align: start; flex-shrink: 0; }

/* === NEW SECTIONS (Home Page) === */
.section-container { max-width: 1200px; margin: 0 auto; }
.section-title { font-size: 2.2rem; font-weight: 900; text-align: center; color: var(--gray-900); margin-bottom: 12px; }
.section-subtitle { font-size: 1.1rem; text-align: center; color: var(--gray-500); margin-bottom: 40px; }

/* How It Works */
.how-it-works { padding: 100px 0; background: #ffffff; }
.hiw-container { overflow-x: auto; padding: 20px 4% 40px 4%; scrollbar-width: none; -ms-overflow-style: none; cursor: grab; }
.hiw-container::-webkit-scrollbar { display: none; }
.hiw-track { display: flex; gap: 30px; width: max-content; margin: 0 auto; }
.hiw-item { 
    width: 340px; text-align: center; position: relative; flex-shrink: 0;
    padding: 30px; border-radius: 24px; background: #f8fafc;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}
.hiw-number { 
    width: 64px; height: 64px; background: #7c3aed; color: white; border-radius: 50%; 
    display: flex; align-items: center; justify-content: center; font-size: 1.6rem; 
    font-weight: 800; margin: 0 auto 24px; box-shadow: 0 8px 24px rgba(124, 58, 237, 0.3);
}
.hiw-item h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 16px; color: var(--gray-900); }
.hiw-item p { color: var(--gray-500); line-height: 1.6; font-size: 0.95rem; }

/* Testimonials */
.testimonials { padding: 100px 0; background: #f3f0ff; overflow: hidden; border-top: 1px solid rgba(124, 58, 237, 0.1); }
.testi-container { overflow-x: auto; padding: 20px 4% 40px 4%; scrollbar-width: none; -ms-overflow-style: none; cursor: grab; }
.testi-container::-webkit-scrollbar { display: none; }
.testi-track { display: flex; gap: 30px; width: max-content; will-change: transform; }
.testi-card { 
    width: 380px; background: #ffffff; padding: 40px; border-radius: 28px; 
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.1); border: 1px solid rgba(124, 58, 237, 0.05);
    transition: transform 0.3s ease;
}
.testi-card:hover { transform: translateY(-5px); }
.testi-quote { font-size: 4rem; color: #7c3aed; line-height: 1; margin-bottom: -10px; opacity: 0.2; font-family: serif; }
.testi-card p { font-size: 1.05rem; color: var(--gray-700); line-height: 1.7; font-style: italic; margin-bottom: 24px; }
.testi-author { font-weight: 700; color: var(--gray-900); font-size: 0.9rem; }

/* FAQ */
.faq-section { padding: 100px 4%; background: #0f172a; color: white; }
.faq-section .section-title { color: white; }
.faq-accordion { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.faq-question { 
    padding: 24px 0; cursor: pointer; font-weight: 700; color: #e2e8f0; 
    display: flex; justify-content: space-between; align-items: center; font-size: 1.1rem;
    transition: color 0.3s;
}
.faq-question:hover { color: #a78bfa; }
.faq-answer { max-height: 0; overflow: hidden; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); color: #94a3b8; line-height: 1.8; }
.faq-item.active .faq-answer { max-height: 200px; padding-bottom: 24px; }
.faq-item.active .faq-question span { transform: rotate(45deg); color: #7c3aed; }
.faq-question span { transition: transform 0.3s; font-size: 1.5rem; color: var(--gray-300); }

/* ========== BACK BUTTON ========== */
.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: var(--radius-md);
    border: 1.5px solid var(--gray-200);
    background: transparent;
    color: var(--gray-600);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    margin-bottom: 30px;
}
.btn-back svg {
    transition: transform 0.3s ease;
}
.btn-back:hover {
    color: #7c3aed;
    border-color: rgba(124, 58, 237, 0.3);
    background: rgba(124, 58, 237, 0.03);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.05);
}
.btn-back:hover svg {
    transform: translateX(-4px);
}

@media (max-width: 768px) {
    .hiw-grid { grid-template-columns: 1fr; gap: 50px; }
    .testi-card { width: 300px; padding: 30px; }
    .btn-back {
        padding: 8px 16px;
        font-size: 0.85rem;
        margin-bottom: 20px;
    }
}

/* ========== MOBİL SAYFA GEÇİŞ OVERLAY ========== */
#page-transition-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99998;
    background: rgba(249, 250, 251, 0.97);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    animation: none !important; /* smoothPageLoad'dan etkilenmesin */
}
@media (max-width: 900px) {
    #page-transition-overlay {
        display: block;
    }
}

/* Geçiş overlay içerik stilleri */
.ptr-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.25s ease 0.1s, transform 0.25s ease 0.1s;
}
#page-transition-overlay.ptr-visible .ptr-content {
    opacity: 1;
    transform: scale(1);
}
.ptr-logo {
    height: 56px;
    width: auto;
    object-fit: contain;
}
.ptr-spinner {
    width: 28px;
    height: 28px;
    border: 2.5px solid rgba(0,0,0,0.08);
    border-top-color: #374151;
    border-radius: 50%;
    animation: spinLoader 0.9s linear infinite;
}

/* === DARK MODE PANEL UI === */
.panel-dark {
    background-color: #020617; /* Very dark slate, almost black */
    color: #f8fafc;
}
.panel-dark .main-content {
    background-color: #020617;
}
.panel-dark .sidebar {
    background: #0f172a;
    border-right: 1px solid rgba(255,255,255,0.05);
}
.panel-dark .sidebar-nav a {
    color: #94a3b8 !important;
}
.panel-dark .sidebar-nav a:hover, .panel-dark .sidebar-nav a.active {
    color: #f8fafc !important;
    background: rgba(255,255,255,0.05) !important;
}
.panel-dark .sidebar .logo-text {
    color: #ffffff !important;
}
.panel-dark .sidebar .logo-text span {
    color: #94a3b8 !important;
}
.panel-dark .mobile-header {
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.panel-dark .mobile-header .btn-outline {
    border-color: rgba(255,255,255,0.2) !important;
    color: #f8fafc !important;
}
.panel-dark .premium-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    box-shadow: 0 10px 40px -10px rgba(0,0,0,0.5);
    padding: 32px;
    transition: all 0.3s ease;
    margin-bottom: 24px;
}
.panel-dark .premium-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 40px -10px rgba(0,0,0,0.8), 0 0 20px rgba(255,255,255,0.02);
}
.panel-dark .premium-row-item {
    background: rgba(255,255,255,0.02);
    border-radius: 12px;
    padding: 18px 24px;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
    text-decoration: none;
    color: #f8fafc;
}
.panel-dark .premium-row-item:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}
.panel-dark h1, .panel-dark h2, .panel-dark h3, .panel-dark h4, .panel-dark .page-title, .panel-dark .card-title {
    color: #ffffff !important;
}
.panel-dark p, .panel-dark .page-subtitle, .panel-dark .ticket-meta-item, .panel-dark label, .panel-dark .notif-time, .panel-dark .notif-message {
    color: #94a3b8 !important;
}
.panel-dark input, .panel-dark textarea, .panel-dark select {
    background: rgba(0,0,0,0.2) !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    color: #ffffff !important;
}
.panel-dark input:focus, .panel-dark textarea:focus {
    border-color: rgba(255,255,255,0.3) !important;
    box-shadow: 0 0 0 2px rgba(255,255,255,0.05) !important;
}

/* Fix Stat filters for dark mode */
.panel-dark .stat-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
}
.panel-dark .stat-card.active {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.2);
}
.panel-dark .stat-label { color: #94a3b8; }
.panel-dark .stat-number { color: #f8fafc !important; }

/* Badges for dark mode */
.panel-dark .premium-pill-badge {
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.panel-dark .pill-waiting { background: rgba(234,88,12,0.15) !important; color: #fdba74 !important; border: 1px solid rgba(234,88,12,0.3) !important; }
.panel-dark .pill-progress { background: rgba(37,99,235,0.15) !important; color: #93c5fd !important; border: 1px solid rgba(37,99,235,0.3) !important; }
.panel-dark .pill-done { background: rgba(22,163,74,0.15) !important; color: #86efac !important; border: 1px solid rgba(22,163,74,0.3) !important; }
.panel-dark .pill-cancelled { background: rgba(220,38,38,0.15) !important; color: #fca5a5 !important; border: 1px solid rgba(220,38,38,0.3) !important; }

@media (max-width: 768px) {
    .panel-dark .premium-card { padding: 20px; border-radius: 16px; }
    .panel-dark .premium-row-item { flex-direction: column; align-items: flex-start; gap: 12px; padding: 16px; }
    .panel-dark .premium-row-actions { width: 100%; display: flex; justify-content: space-between; align-items: center; }
}

.panel-dark .service-card {
    background: rgba(255,255,255,0.03) !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    border-top: 4px solid var(--purple-500) !important;
    color: #f8fafc;
}
.panel-dark .service-card .desc { color: #94a3b8 !important; }
.panel-dark .service-card .name { color: #f8fafc !important; }
.panel-dark .service-card:hover {
    background: rgba(255,255,255,0.05) !important;
    border-color: rgba(255,255,255,0.15) !important;
    border-top: 4px solid var(--purple-400) !important;
}
.panel-dark .stat-card.active .stat-number { color: #ffffff !important; text-shadow: 0 0 10px rgba(255,255,255,0.3); }


/* ========================================= */
/* REVİZYON EKLENTİLERİ */
/* ========================================= */

/* Madde 2: Dosya Seç Butonu */
input[type="file"]::file-selector-button {
    background: rgba(255, 255, 255, 0.05);
    color: #e2e8f0;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    padding: 6px 12px;
    margin-right: 12px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s;
}
input[type="file"]::file-selector-button:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Madde 7: Tam Ekran Beyazlık Sorunu */
:fullscreen, ::backdrop {
    background-color: #020617 !important;
}

/* Madde 3: Statü Badgeleri Köşeli (border-radius: 6px) */
.premium-pill-badge {
    border-radius: 6px !important;
}


/* Müşteri görünümü ortalama (Sağ boşluk giderme) */
@media (min-width: 992px) {
    .ticket-container.customer-view {
        display: grid !important;
        grid-template-columns: 1fr !important;
        max-width: 1000px;
        margin: 0 auto;
    }
}

@keyframes spin-refresh { 100% { transform: rotate(360deg); } }

@media (min-width: 992px) { .mobile-header { display: none !important; } }

/* ========================================= */
/* PREMIUM LIGHT THEME COMPONENTS */
/* ========================================= */

.premium-card {
    background: var(--white);
    border-radius: 20px;
    border: 1px solid var(--gray-200);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.04), var(--shadow-sm);
    padding: 32px;
    transition: all 0.3s ease;
    margin-bottom: 24px;
}
.premium-card:hover {
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.08), var(--shadow-md);
    border-color: var(--gray-300);
}
.premium-row-item {
    background: #fdfdfd;
    border-radius: 12px;
    padding: 18px 24px;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--gray-700);
}
.premium-row-item:hover {
    background: var(--white);
    border-color: var(--gray-300);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}
.premium-row-item h4 {
    color: var(--gray-900) !important;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}
.premium-pill-badge {
    padding: 6px 14px;
    border-radius: 6px !important;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.pill-waiting {
    background: var(--orange-50) !important;
    color: var(--orange-600) !important;
    border: 1px solid var(--orange-200) !important;
}
.pill-progress {
    background: var(--blue-50) !important;
    color: var(--blue-600) !important;
    border: 1px solid var(--blue-200) !important;
}
.pill-done {
    background: var(--green-50) !important;
    color: var(--green-600) !important;
    border: 1px solid var(--green-200) !important;
}
.pill-cancelled {
    background: var(--red-50) !important;
    color: var(--red-600) !important;
    border: 1px solid var(--red-200) !important;
}

/* Service card (for new request page) */
.service-card {
    background: var(--white) !important;
    border: 1px solid var(--gray-200) !important;
    border-top: 4px solid var(--purple-500) !important;
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
    text-decoration: none;
}
.service-card .name {
    color: var(--gray-900) !important;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 8px;
}
.service-card .desc {
    color: var(--gray-500) !important;
    font-size: 0.85rem;
    line-height: 1.5;
}
.service-card:hover {
    background: var(--white) !important;
    border-color: var(--gray-300) !important;
    border-top: 4px solid var(--purple-600) !important;
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

/* ========================================= */
/* MOBILE TAB SYSTEM & PTR & ALIGNMENT STYLES */
/* ========================================= */

.ptr-indicator {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translate3d(-50%, -60px, 0);
    width: 42px;
    height: 42px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12), 0 2px 5px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    transition: transform 0.15s cubic-bezier(0.1, 0.8, 0.2, 1), opacity 0.15s ease-out;
    color: var(--purple-600);
}
.ptr-spinner {
    transition: transform 0.05s linear;
}
.ptr-circle {
    stroke: var(--gray-200);
}
.ptr-indicator.ptr-ready {
    color: var(--orange-500);
}
.ptr-indicator.ptr-refreshing .ptr-spinner {
    animation: spin-refresh 0.8s linear infinite !important;
}

.mobile-dashboard-tabs {
    display: none;
}

@media (max-width: 768px) {
    .mobile-dashboard-tabs {
        display: flex;
        gap: 6px;
        margin: 16px 0 20px 0;
        padding: 4px;
        background: rgba(15, 23, 42, 0.03);
        border-radius: 12px;
        border: 1px solid var(--gray-200);
    }
    .mobile-tab-btn {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        padding: 10px 8px;
        font-size: 0.8rem;
        font-weight: 700;
        color: var(--gray-600);
        background: transparent;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.2s ease;
    }
    .mobile-tab-btn.active {
        background: #ffffff;
        color: var(--purple-600);
        box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    }
    .mobile-tab-content {
        display: block;
    }
    .mobile-tab-content.hidden-tab {
        display: none !important;
    }
    .desktop-accordion.mobile-hidden {
        display: none !important;
    }
    
    /* Mobil Görünüm: Randevularım details summary küçültme */
    .meetings-title {
        font-size: 0.82rem !important;
    }
    .meetings-count {
        font-size: 0.65rem !important;
        padding: 1px 6px !important;
    }
    .meetings-toggle {
        font-size: 0.72rem !important;
    }

    /* Mobil Görünüm: Premium row satırı sola dayalı hizalama */
    .premium-row-item {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 12px !important;
        padding: 14px 16px !important;
    }
    .premium-row-item .request-info {
        width: 100% !important;
    }
    .premium-row-item .premium-row-actions {
        width: 100% !important;
        display: flex !important;
        justify-content: flex-start !important;
        align-items: center !important;
        gap: 10px !important;
        margin-top: 4px !important;
        border-top: 1px solid var(--gray-100) !important;
        padding-top: 10px !important;
    }
    .premium-row-item .premium-row-actions span[style*="font-size:1.2rem"] {
        display: none !important;
    }
    
    /* Satır içi flex elemanları alt alta sola dayama */
    .premium-row-item .request-info div[style*="display:flex"] {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 6px !important;
    }
    
    /* Ticket detay sayfası mobil hizalaması (inline stilleri ezme) */
    .ticket-container .ticket-header {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 12px !important;
    }
    .ticket-container .ticket-header > div[style*="display:flex"] {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 6px !important;
    }
    .ticket-container .ticket-header .btn {
        align-self: flex-start !important;
        width: auto !important;
    }
    
    /* Mobil Uyumlu Tipografi Kuralları */
    .page-title { font-size: 1.25rem !important; font-weight: 800 !important; line-height: 1.3 !important; }
    .page-subtitle { font-size: 0.8rem !important; line-height: 1.4 !important; color: var(--gray-500) !important; }
    .card-title { font-size: 1.05rem !important; font-weight: 700 !important; margin-bottom: 12px !important; }
    .premium-row-item h4 { font-size: 0.9rem !important; font-weight: 700 !important; }
    .premium-row-item .request-info div { font-size: 0.75rem !important; }
    .form-label { font-size: 0.8rem !important; }
    .form-input, .form-select, .form-textarea { font-size: 0.85rem !important; }
    .btn { font-size: 0.8rem !important; }
    .btn-sm { font-size: 0.7rem !important; }
    
    /* Geçmiş randevu badge stili */
    .pill-past {
        background: var(--gray-100) !important;
        color: var(--gray-600) !important;
        border: 1px solid var(--gray-200) !important;
    }
    
    /* Mobil Service Grid & Card İyileştirmeleri */
    .service-card {
        padding: 20px 16px !important;
        gap: 8px !important;
    }
    .service-card .name {
        font-size: 0.9rem !important;
    }
    .service-card .desc {
        font-size: 0.75rem !important;
    }
    
    /* Mobil ticket detay randevu ibaresi */
    .mobile-only-meeting-banner {
        display: block !important;
    }
}

/* Desktop overrides for mobile tab elements to avoid layout duplication */
@media (min-width: 769px) {
    #tab-takvim {
        display: none !important;
    }
    #tab-talepler {
        display: block !important;
    }
    .mobile-only-meeting-banner {
        display: none !important;
    }
}
