@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #0f172a;        /* Derin Lacivert / Koyu Slate */
    --primary-light: #1e293b;  /* Açık Koyu Slate */
    --accent: #b45309;         /* Premium Kehribar / Altın Tonu */
    --accent-light: #fef3c7;   /* Çok Açık Altın */
    --accent-hover: #92400e;   /* Hover için Koyu Kehribar */
    --text: #334155;           /* Gövde Metni */
    --text-muted: #64748b;     /* Yardımcı Metin */
    --bg-light: #f8fafc;       /* Açık Gri Arka Plan */
    --bg-white: #ffffff;       /* Beyaz */
    --border-color: #e2e8f0;   /* Kenarlık Rengi */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Sıfırlama (Reset) */
html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

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

button, input, select {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
    background: none;
}

/* Yardımcı Sınıflar (Utilities) */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 96px 0;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
    text-align: center;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Butonlar */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    gap: 8px;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--bg-white);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: var(--primary);
    color: var(--bg-white);
}

.btn-secondary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    border: 2px solid var(--border-color);
    color: var(--primary);
}

.btn-outline:hover {
    border-color: var(--primary);
    background-color: var(--primary);
    color: var(--bg-white);
}

/* Navigasyon / Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo span {
    color: var(--accent);
}

.logo img {
    display: block;
}

.header-container .logo img {
    height: 56px;
    object-fit: contain;
    transition: var(--transition);
}

@media (max-width: 768px) {
    .header-container .logo img {
        height: 36px;
    }
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-weight: 500;
    color: var(--primary-light);
}

.nav-link:hover {
    color: var(--accent);
}

.nav-link.active {
    color: var(--accent);
    font-weight: 600;
}

/* Mobile Hamburger Button */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--primary);
    cursor: pointer;
    padding: 8px;
    z-index: 1010;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.mobile-menu-toggle:hover {
    color: var(--accent);
}

/* Mobile Drawer Overlay */
.mobile-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Drawer Menu */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background-color: #0f172a; /* Premium dark slate */
    color: #ffffff;
    z-index: 1050;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    padding: 24px;
}

.mobile-drawer.active {
    right: 0;
}

.mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.mobile-drawer-close {
    background: none;
    border: none;
    color: #cbd5e1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.mobile-drawer-close:hover {
    color: #ffffff;
    transform: rotate(90deg);
}

.mobile-drawer-body {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.mobile-nav-links a {
    font-size: 1.05rem;
    font-weight: 600;
    color: #cbd5e1;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    display: block;
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
    color: #f59e0b; /* Amber accent */
    padding-left: 8px;
}

.mobile-drawer-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: auto;
    padding-bottom: 24px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Responsive Overrides */
@media (max-width: 768px) {
    .nav {
        display: none !important;
    }
    .mobile-menu-toggle {
        display: inline-flex;
    }
    .header-actions {
        display: none !important;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 90vh;
    min-height: 600px;
    background-image: linear-gradient(rgba(15, 23, 42, 0.6), rgba(15, 23, 42, 0.6)), url('../images/hero_bg.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: var(--bg-white);
    padding-top: 80px;
}

.hero-content {
    max-width: 800px;
}

.hero-tagline {
    font-size: 1.125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-light);
    margin-bottom: 16px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-desc {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
}

/* Arama Formu (Search/Filter Bar) */
.search-container {
    position: relative;
    margin-top: -60px;
    z-index: 10;
}

.search-box {
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
}

.search-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
}

.tab-btn {
    padding: 8px 20px;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.tab-btn.active {
    background-color: var(--accent-light);
    color: var(--accent);
}

.search-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.search-actions {
    grid-column: span 4;
    display: flex;
    justify-content: flex-end;
    gap: 16px;
    margin-top: 12px;
}

.search-actions .btn-outline {
    background-color: transparent;
    border-color: var(--border-color);
    color: var(--primary);
}

@media (max-width: 992px) {
    .search-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .search-actions {
        grid-column: span 2;
    }
}

@media (max-width: 576px) {
    .search-grid {
        grid-template-columns: 1fr;
    }
    .search-actions {
        grid-column: span 1;
        flex-direction: column;
        gap: 12px;
    }
    .search-actions .btn {
        width: 100%;
    }
}

.search-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.search-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
}

.search-control {
    width: 100%;
    height: 48px;
    padding: 0 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    background-color: var(--bg-light);
    color: var(--primary);
    transition: var(--transition);
}

.search-control:focus {
    border-color: var(--accent);
    background-color: var(--bg-white);
}

.search-btn {
    align-self: flex-end;
    height: 48px;
}

/* Öne Çıkan İlanlar */
.listings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

@media (max-width: 992px) {
    .listings-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .listings-grid {
        grid-template-columns: 1fr;
    }
}

.card {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.card-img-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.card:hover .card-img {
    transform: scale(1.05);
}

.card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background-color: var(--primary);
    color: var(--bg-white);
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
}

.card-badge.sale {
    background-color: var(--accent);
}

.card-price {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background-color: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    color: var(--bg-white);
    padding: 6px 14px;
    font-weight: 700;
    border-radius: var(--radius-sm);
}

.card-body {
    padding: 24px;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.card-location {
    font-size: 0.875rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 16px;
}

.card-features {
    display: flex;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
    font-size: 0.875rem;
    color: var(--text-muted);
}

.card-feature {
    display: flex;
    align-items: center;
    gap: 6px;
}

.card-feature span {
    font-weight: 600;
    color: var(--primary);
}

/* Neden Biz Section */
.why-us {
    background-color: var(--bg-white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

@media (max-width: 768px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

.why-card {
    text-align: center;
    padding: 24px;
}

.why-icon {
    width: 80px;
    height: 80px;
    background-color: var(--accent-light);
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 24px;
    font-size: 2rem;
}

.why-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.why-desc {
    color: var(--text-muted);
}

/* Genişletilmiş Hakkımızda Bölümü */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 64px;
    align-items: center;
    margin-bottom: 80px;
}

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

.about-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.about-content p {
    color: var(--text);
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 32px;
}

.stat-item {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: var(--radius-sm);
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.stat-num {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--accent);
    display: block;
    margin-bottom: 4px;
}

.stat-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-light);
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 8px solid var(--bg-white);
    transform: rotate(1deg);
    transition: var(--transition);
}

.about-image-wrapper:hover {
    transform: rotate(0deg) scale(1.02);
}

.about-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .about-img {
        height: 300px;
    }
}

/* CTA Section (Eylem Çağrısı) */
.cta {
    background-image: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.85)), url('../images/hero_bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--bg-white);
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-desc {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

/* Footer */
.footer {
    background-color: var(--bg-white);
    color: var(--text-muted);
    padding: 80px 0 32px;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 48px;
    margin-bottom: 64px;
}

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

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

.footer-brand .logo {
    color: var(--primary);
    margin-bottom: 20px;
}

.footer-desc {
    font-size: 0.9375rem;
    margin-bottom: 24px;
    line-height: 1.7;
}

.footer-heading {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 24px;
}

.footer-links {
    list-style: none;
}

.footer-link {
    margin-bottom: 12px;
}

.footer-link a:hover {
    color: var(--accent);
    padding-left: 4px;
}

.footer-contact {
    font-size: 0.9375rem;
}

.footer-contact-item {
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.social-icon-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition);
}

.social-icon-btn:hover {
    color: var(--accent);
    border-color: var(--accent);
    background-color: var(--accent-light);
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* Admin Panel - Sidebar Layout */
.admin-container {
    display: flex;
    min-height: 100vh;
    background-color: var(--bg-light);
}

.admin-sidebar {
    width: 280px;
    background-color: var(--primary);
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 100;
    border-right: 1px solid var(--primary-light);
}

.sidebar-logo {
    height: 80px;
    padding: 0 24px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--primary-light);
}

.sidebar-logo .logo {
    color: var(--bg-white);
    font-size: 1.35rem;
}

.sidebar-nav {
    flex-grow: 1;
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sidebar-section-title {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.1em;
    padding: 12px 16px 4px;
}

.sidebar-item-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.sidebar-item-link svg {
    flex-shrink: 0;
    transition: var(--transition);
}

.sidebar-item-link:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--bg-white);
}

.sidebar-item-link:hover svg {
    color: var(--accent);
}

.sidebar-item-link.active {
    background-color: var(--accent);
    color: var(--bg-white);
    font-weight: 600;
}

.sidebar-item-link.active svg {
    color: var(--bg-white);
}

.sidebar-profile-box {
    padding: 24px;
    border-top: 1px solid var(--primary-light);
    background-color: rgba(0, 0, 0, 0.15);
}

.sidebar-profile-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--bg-white);
    display: block;
    margin-bottom: 4px;
}

.sidebar-profile-role {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: block;
    margin-bottom: 16px;
}

.sidebar-logout-btn {
    width: 100%;
    height: 38px;
    border-color: rgba(239, 68, 68, 0.4);
    color: #f87171;
    font-size: 0.85rem;
}

.sidebar-logout-btn:hover {
    background-color: #ef4444;
    border-color: #ef4444;
    color: white;
}

.admin-main-area {
    margin-left: 280px;
    flex-grow: 1;
    padding: 48px;
}

@media (max-width: 992px) {
    .admin-sidebar {
        width: 80px;
    }
    .sidebar-logo .logo span, 
    .sidebar-item-link span, 
    .sidebar-profile-box {
        display: none;
    }
    .admin-main-area {
        margin-left: 80px;
        padding: 32px 24px;
    }
    .sidebar-logo {
        justify-content: center;
        padding: 0;
    }
    .sidebar-item-link {
        justify-content: center;
        padding: 12px;
    }
}

/* Modern Dosya Yükleme (File Upload) Stilleri */
.file-upload-wrapper {
    position: relative;
    width: 100%;
}

.file-upload-label {
    display: block;
    width: 100%;
    cursor: pointer;
}

.file-upload-design {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px;
    border: 2px dashed var(--border-color);
    border-radius: var(--radius-md);
    background-color: var(--bg-light);
    transition: var(--transition);
    text-align: center;
}

.file-upload-design svg {
    color: var(--text-muted);
    margin-bottom: 12px;
    transition: var(--transition);
}

.file-upload-design .main-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 4px;
}

.file-upload-design .sub-text {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.file-upload-design .btn-browse {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    background-color: var(--primary);
    color: var(--bg-white);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.file-upload-label:hover .file-upload-design {
    border-color: var(--accent);
    background-color: rgba(180, 83, 9, 0.03);
}

.file-upload-label:hover .file-upload-design svg {
    color: var(--accent);
    transform: translateY(-2px);
}

.file-upload-label:hover .btn-browse {
    background-color: var(--accent);
}

.file-upload-input {
    display: none;
}

.filename-preview {
    margin-top: 12px;
    padding: 10px 16px;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    box-shadow: var(--shadow-sm);
}

.filename-preview::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #10b981;
    border-radius: 50%;
}

/* Admin Tablo ve Buton Stilleri */
.table-responsive {
    width: 100%;
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.admin-table th, .admin-table td {
    padding: 16px 24px;
    border-bottom: 1px solid var(--border-color);
    vertical-align: middle;
}

.admin-table th {
    background-color: var(--bg-light);
    color: var(--primary);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.admin-table tr:hover td {
    background-color: rgba(248, 250, 252, 0.6);
}

.thumb-img {
    width: 80px;
    height: 50px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

/* Rozetler (Badges) */
.badge {
    display: inline-flex;
    padding: 4px 10px;
    font-size: 0.725rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
}

.badge-success {
    background-color: #d1fae5;
    color: #065f46;
}

.badge-danger {
    background-color: #fee2e2;
    color: #991b1b;
}

.badge-info {
    background-color: #e0f2fe;
    color: #075985;
}

/* Modern Aksiyon Butonları */
.action-btns {
    display: flex;
    gap: 8px;
}

.btn-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 14px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
    text-decoration: none;
    height: 32px;
    gap: 6px;
}

.btn-action-edit {
    background-color: #eff6ff;
    color: #2563eb;
}

.btn-action-edit:hover {
    background-color: #2563eb;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.15);
}

.btn-action-delete {
    background-color: #fef2f2;
    color: #dc2626;
}

.btn-action-delete:hover {
    background-color: #dc2626;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px -1px rgba(220, 38, 38, 0.15);
}

.btn-action-show {
    background-color: #f8fafc;
    color: #64748b;
    border: 1px solid var(--border-color);
}

.btn-action-show:hover {
    background-color: #64748b;
    color: white;
    transform: translateY(-1px);
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 90vh;
    min-height: 600px;
    overflow: hidden;
    color: var(--bg-white);
    background-color: var(--primary);
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    padding-top: 80px;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-slide .container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    z-index: 5;
}

/* Slider Controls */
.slider-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.slider-control:hover {
    background-color: var(--accent);
    border-color: var(--accent);
    transform: translateY(-50%) scale(1.05);
}

.slider-control.prev {
    left: 24px;
}

.slider-control.next {
    right: 24px;
}

.slider-dots {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background-color: var(--accent);
    transform: scale(1.3);
}

