/* Genel Stil */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
  font-size: 14px;
  position: relative;
  min-height: 100%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5f5f5;
    color: #333;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

/* Header Stilleri */
.site-header {
    background-color: #fff;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.top-bar {
    background-color: #1e3a8a;
    color: #fff;
    padding: 10px 0;
    font-size: 13px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
}

.phone-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.top-bar-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-login {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 6px 15px;
    border-radius: 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.btn-login:hover {
    background-color: #fff;
    color: #1e3a8a;
}

.btn-login.btn-notification {
    background-color: #e67e22;
    border-color: #e67e22;
}

.btn-login.btn-notification:hover {
    background-color: #d35400;
    color: #fff;
}

.btn-fast-software {
    background-color: #fff;
    color: #1e3a8a;
    padding: 6px 15px;
    border-radius: 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.btn-fast-software:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(0,0,0,0.15);
}

.main-header {
    padding: 20px 0;
    background-color: #fff;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
}

/* Logo Link */
.logo-section-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.logo-section-link:hover {
    transform: scale(1.02);
    text-decoration: none;
    color: inherit;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1e3a8a, #2c3e50);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 32px;
    font-weight: bold;
    position: relative;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.logo-letter-small {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 14px;
    opacity: 0.8;
}

.brand-info {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 20px;
    font-weight: 800;
    color: #1e3a8a;
    letter-spacing: -0.5px;
}

.brand-title {
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
}

/* Navigation Menu */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 10px; /* Gap arttırıldı */
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-item {
    position: relative;
    perspective: 1000px; /* 3D efekt için */
}

.nav-link {
    color: #475569;
    text-decoration: none;
    font-weight: 600;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Bouncy transition */
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    transition: all 0.4s ease;
    z-index: -1;
    border-radius: 12px;
    opacity: 0;
}

.nav-link:hover {
    color: #fff;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 20px rgba(30, 58, 138, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
}

.nav-link:hover::before {
    width: 100%;
    opacity: 1;
}

.dropdown-icon {
    font-size: 10px;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.nav-item:hover .dropdown-icon {
    transform: rotate(180deg) scale(1.2);
}

/* Dropdown Menu */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    min-width: 240px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15), 0 5px 15px rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    padding: 12px 0;
    margin-top: 0; /* Boşluğu kaldır */
    z-index: 1000;
    border: 1px solid rgba(226, 232, 240, 0.8);
    animation: slideUpFade 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform-origin: top center;
}

.nav-item {
    padding-bottom: 10px; /* Dropdown ile buton arasındaki boşluğu köprüle */
    margin-bottom: -10px; /* Layout'u bozmamak için negatif margin */
}


@keyframes slideUpFade {
    from { 
        opacity: 0; 
        transform: translateY(20px) scale(0.95); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0) scale(1); 
    }
}

.nav-item:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    list-style: none;
    padding: 0 8px;
}

.dropdown-link {
    display: block;
    padding: 12px 20px;
    color: #475569;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-size: 14px;
    border-radius: 8px;
    margin-bottom: 2px;
    position: relative;
    border-left: 3px solid transparent;
}

.dropdown-link:hover {
    background-color: #f8fafc;
    color: #1e3a8a;
    padding-left: 28px;
    background: linear-gradient(to right, #f0f9ff, #fff);
    border-left-color: #3b82f6;
    transform: translateX(5px);
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
}

/* Hero Section */
.hero-section {
    width: 100%;
    height: 300px;
    overflow: hidden;
    margin-bottom: 30px;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Page Layout */
.page-container {
    padding: 30px 0;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.page-container .container-fluid {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.page-container .row {
    flex: 1;
}

.breadcrumb-section {
    background-color: #f8f9fa;
    padding: 12px 15px;
    margin-bottom: 20px;
    border-radius: 6px;
    border-left: 4px solid #1e3a8a;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.breadcrumb-text {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}

.left-column {
    display: flex;
    flex-direction: column;
}

/* Sol Menü */
.left-menu-section {
    margin-bottom: 30px;
}

.left-menu-box {
    background-color: #fff;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    border: 2px solid #1e3a8a; /* Blue border like Turmob */
    height: 100%; 
    min-height: 500px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.left-menu-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(30, 58, 138, 0.15);
}

.menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.menu-item {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e9ecef;
}

.menu-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.menu-link {
    color: #475569;
    text-decoration: none;
    display: flex;
    align-items: center;
    padding: 10px;
    border-radius: 6px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-left: 3px solid transparent;
    background-color: transparent;
}

.menu-link:hover {
    background-color: #f0f9ff;
    color: #1e3a8a;
    transform: translateX(5px);
    box-shadow: 0 2px 4px rgba(30, 58, 138, 0.1);
    border-left-color: #1e3a8a;
    text-decoration: none;
}

.menu-item.active .menu-link {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    color: #fff;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
    transform: translateX(5px);
    border-left-color: transparent;
}

.menu-icon {
    margin-right: 12px;
    font-size: 14px;
    color: #94a3b8;
    transition: all 0.3s ease;
}

.menu-link:hover .menu-icon {
    color: #1e3a8a;
    transform: scale(1.2) rotate(10deg);
}

.menu-item.active .menu-icon {
    color: #fff;
}

.menu-text {
    font-weight: 500;
}

/* Content Box */
.content-box {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
    margin-bottom: 30px;
    height: 100%; /* İçerik kutusu da uzasın */
}

.section-heading {
    font-size: 24px;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e2e8f0;
    position: relative;
}

.section-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 60px;
    height: 2px;
    background-color: #3b82f6;
}

/* Table Styles - Beautiful & Modern */
.table-section {
    margin-top: 20px;
    overflow-x: auto;
}

.table {
    width: 100%;
    margin-bottom: 1rem;
    color: #333;
    vertical-align: middle;
    border-color: #e2e8f0;
}

.table th {
    background-color: #1e3a8a;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    padding: 12px 15px;
    border-bottom: none;
    white-space: nowrap;
}

.table td {
    padding: 12px 15px;
    border-bottom: 1px solid #e2e8f0;
    font-size: 14px;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(0, 0, 0, 0.02);
}

.table-hover tbody tr:hover {
    background-color: rgba(59, 130, 246, 0.05);
}

.table-bordered {
    border: 1px solid #e2e8f0;
}

.table-bordered th,
.table-bordered td {
    border: 1px solid #e2e8f0;
}

/* Total Row Style */
.total-row {
    background-color: #f8fafc !important;
    font-weight: bold;
    color: #1e3a8a;
}

.label-cell {
    width: 60%;
}

.value-cell {
    width: 40%;
    text-align: right;
    font-family: 'Consolas', monospace;
}

/* Resmi Gazete */
.resmi-gazete-section {
    margin-bottom: 30px;
}

.resmi-gazete-box {
    background-color: #fff;
    padding: 20px;
    border-radius: 12px;
    border: 2px solid #dc3545;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.resmi-gazete-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(220, 53, 69, 0.15);
}

.resmi-gazete-header-logo img {
    max-height: 50px;
}

.resmi-gazete-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.resmi-gazete-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e9ecef;
}

.resmi-gazete-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.resmi-gazete-link {
    text-decoration: none;
    color: inherit;
    display: block;
    padding: 10px;
    border-radius: 6px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-left: 3px solid transparent;
}

.resmi-gazete-link:hover {
    text-decoration: none;
    color: inherit;
    background-color: #fff5f5; /* Light red */
    transform: translateX(5px);
    border-left-color: #dc3545;
    box-shadow: 0 2px 4px rgba(220, 53, 69, 0.1);
}

.resmi-gazete-link:hover .resmi-gazete-baslik {
    color: #dc3545;
}

.resmi-gazete-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.resmi-gazete-baslik {
    font-weight: 500;
    color: #333;
}

/* GİB Duyuruları */
.gib-duyurulari-section {
    margin-bottom: 30px;
}

.gib-box {
    background-color: #fff;
    border: 2px solid #dc3545;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.gib-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(220, 53, 69, 0.15);
}

.gib-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.gib-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e9ecef;
}

.gib-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.gib-link {
    text-decoration: none;
    color: inherit;
    display: block;
    padding: 10px;
    border-radius: 6px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-left: 3px solid transparent;
}

.gib-link:hover {
    text-decoration: none;
    color: inherit;
    background-color: #fff5f5; /* Light red */
    transform: translateX(5px);
    border-left-color: #dc3545;
    box-shadow: 0 2px 4px rgba(220, 53, 69, 0.1);
}

.gib-link:hover .gib-baslik {
    color: #dc3545;
}

.gib-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.gib-baslik {
    font-weight: 500;
    color: #333;
}

.section-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.section-title {
    font-size: 16px;
    font-weight: bold;
    margin: 0;
    margin-right: 15px;
}

.section-line {
    flex: 1;
    height: 2px;
}

.gib-line {
    background-color: #dc3545;
}

.sgk-line {
    background-color: #6f42c1;
}

.turmob-line {
    background-color: #1e3a8a;
}

.bizden-line {
    background-color: #1e3a8a;
}

.resmi-gazete-line {
    background-color: #dc3545;
}

.menu-line {
    background-color: #1e3a8a;
}

.gib-logo, .sgk-logo {
    margin-bottom: 15px;
}

.logo-img {
    max-height: 50px;
}

.duyuru-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.duyuru-item {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e9ecef;
}

.duyuru-item:last-child {
    border-bottom: none;
}

.duyuru-link {
    color: #333;
    text-decoration: none;
    display: block;
}

.duyuru-link:hover {
    color: #1e3a8a;
}

.duyuru-icon {
    color: #dc3545;
    margin-right: 8px;
    font-size: 10px;
}

.duyuru-date {
    color: #666;
    font-size: 12px;
    margin-right: 8px;
}

.duyuru-baslik {
    display: block;
    margin-top: 4px;
}

/* Tüm Duyuruları Gör Butonu */
.tum-duyurular-btn-wrapper {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #e9ecef;
}

.btn-tum-duyurular {
    display: inline-block;
    background-color: #1e3a8a;
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    transition: background-color 0.3s;
    width: 100%;
}

.btn-tum-duyurular:hover {
    background-color: #1e40af;
    color: #fff;
}

/* SGK Duyuruları */
.sgk-duyurulari-section {
    margin-bottom: 30px;
}

.sgk-box {
    background-color: #fff;
    border: 2px solid #6f42c1;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.sgk-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(111, 66, 193, 0.15);
}

.sgk-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.sgk-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e9ecef;
}

.sgk-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.sgk-link {
    text-decoration: none;
    color: inherit;
    display: block;
    padding: 10px;
    border-radius: 6px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-left: 3px solid transparent;
}

.sgk-link:hover {
    text-decoration: none;
    color: inherit;
    background-color: #f3e5f5; /* Light purple */
    transform: translateX(5px);
    border-left-color: #6f42c1;
    box-shadow: 0 2px 4px rgba(111, 66, 193, 0.1);
}

.sgk-link:hover .sgk-baslik {
    color: #6f42c1;
}

.sgk-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sgk-baslik {
    font-weight: 500;
    color: #333;
}

/* TÜRMOB Duyuruları */
.turmob-duyurulari-section {
    margin-bottom: 30px;
}

.turmob-box {
    background-color: #fff;
    border: 2px solid #1e3a8a;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.turmob-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(30, 58, 138, 0.15);
}

.turmob-title {
    font-size: 16px;
    font-weight: bold;
    color: #1e3a8a;
    margin: 0;
    margin-right: 15px;
}

.turmob-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.turmob-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e9ecef;
}

.turmob-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.turmob-link {
    text-decoration: none;
    color: inherit;
    display: block;
    padding: 10px;
    border-radius: 6px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-left: 3px solid transparent;
}

.turmob-link:hover {
    text-decoration: none;
    color: inherit;
    background-color: #f0f9ff;
    transform: translateX(5px);
    border-left-color: #1e3a8a;
    box-shadow: 0 2px 4px rgba(30, 58, 138, 0.1);
}

.turmob-link:hover .turmob-baslik {
    color: #1e3a8a;
}

.turmob-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.turmob-baslik {
    font-weight: 500;
    color: #333;
}

.turmob-date {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #666;
    font-size: 12px;
}

.calendar-icon {
    font-size: 14px;
}

/* Bizden Haberler */
.bizden-haberler-section {
    background-color: #fff;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    border: 2px solid #1e3a8a;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.bizden-haberler-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(30, 58, 138, 0.15);
}

.bizden-haberler-section .section-title {
    color: #1e3a8a;
    font-size: 16px;
    margin: 0;
    margin-right: 15px;
}

.no-news {
    color: #666;
    font-style: italic;
    margin: 0;
}

/* Login Section */
.login-section {
    margin-bottom: 20px;
}

.btn-emukellef {
    background-color: #28a745;
    color: #fff;
    padding: 12px 20px;
    border-radius: 4px;
    text-decoration: none;
    display: block;
    text-align: center;
    font-weight: 500;
    transition: background-color 0.3s;
}

.btn-emukellef:hover {
    background-color: #218838;
    color: #fff;
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, #1e3a8a 0%, #0f2650 100%);
    color: #e2e8f0;
    padding: 60px 0 0;
    margin-top: auto; /* Footer'ı en alta it */
    font-size: 14px;
    position: relative;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background-color: #3b82f6;
    border-radius: 2px;
}

.footer-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu-list li {
    margin-bottom: 12px;
}

.footer-link {
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
}

.footer-link:hover {
    color: #fff;
    transform: translateX(5px);
}

.footer-submenu {
    display: none;
}

/* Contact Section */
.contact-info-section {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: #cbd5e1;
}

.contact-icon {
    font-size: 18px;
    color: #60a5fa;
}

/* Social Media */
.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 20px;
}

.social-icon:hover {
    background-color: #3b82f6;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(59, 130, 246, 0.4);
    color: #fff;
}

.social-icon.facebook:hover { background-color: #1877f2; }
.social-icon.instagram:hover { background-color: #e4405f; }
.social-icon.linkedin:hover { background-color: #0077b5; }

/* Fast Software Box */
.fast-software-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    padding: 15px;
    border-radius: 16px;
    text-decoration: none;
    color: #1e3a8a;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 250px;
    height: 250px; /* Square */
    text-align: center;
    border: 4px solid rgba(255, 255, 255, 0.1);
}

.fast-software-box:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    background-color: #f8fafc;
}

.fast-logo-img {
    height: 100px;
    width: auto;
    margin-bottom: 10px;
}

.fast-brand-name {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #1e3a8a;
}

.fast-slogan {
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    background-color: rgba(0,0,0,0.2);
    margin-top: 20px;
}

.footer-copyright {
    color: #94a3b8;
    font-size: 13px;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-bottom-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

.footer-bottom-links a:hover {
    color: #fff;
}

.separator {
    color: #475569;
}

/* Auth / Login Pages */
.auth-page-container {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
    background-color: #f8fafc;
}

.auth-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    padding: 40px;
    width: 100%;
    max-width: 450px;
    border: 1px solid #e2e8f0;
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-title {
    font-size: 24px;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 10px;
}

.auth-subtitle {
    color: #64748b;
    font-size: 14px;
}

.auth-form .form-control {
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #cbd5e1;
    background-color: #f8fafc;
    transition: all 0.3s;
}

.auth-form .form-control:focus {
    background-color: #fff;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.auth-form label {
    font-weight: 500;
    color: #334155;
    margin-bottom: 6px;
    font-size: 14px;
}

.auth-btn {
    padding: 12px;
    font-weight: 600;
    border-radius: 8px;
    font-size: 16px;
    letter-spacing: 0.5px;
    margin-top: 10px;
    background-color: #1e3a8a;
    border: none;
    transition: all 0.3s;
}

.auth-btn:hover {
    background-color: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.2);
}

.auth-footer {
    text-align: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
    font-size: 14px;
}

.auth-footer a {
    color: #1e3a8a;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}

.auth-footer a:hover {
    color: #2563eb;
    text-decoration: underline;
}

/* Custom Tables for Content Pages (AGİ, Asgari Ücret vb.) */
.agi-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.agi-table th {
    background-color: #1a3b6e; /* Dark Blue from image */
    color: white;
    padding: 12px 15px;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid #0f2650;
}

.agi-table td {
    padding: 10px 15px;
    border: 1px solid #e2e8f0;
    color: #333;
    font-weight: 500;
}

.agi-table tr:nth-child(even) {
    background-color: #f8fafc;
}

/* Calculation Tables (Asgari Ücret etc) */
.calculation-header {
    margin-bottom: 25px;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 15px;
}

.calculation-title {
    color: #1a3b6e;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.calculation-source, .calculation-period {
    color: #64748b;
    font-size: 13px;
    font-style: italic;
    margin-bottom: 2px;
}

.calculation-section {
    margin-bottom: 30px;
}

.calculation-subtitle {
    color: #1a3b6e;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    border-left: 4px solid #3b82f6;
    padding-left: 12px;
}

.calculation-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #cbd5e1;
}

.calculation-table td {
    padding: 14px 18px;
    border: 1px solid #cbd5e1;
}

.label-cell {
    font-weight: 600;
    color: #334155;
    background-color: #f8fafc;
    width: 65%;
}

.value-cell {
    font-weight: 700;
    text-align: right;
    color: #0f172a;
    width: 35%;
    font-family: 'Segoe UI', sans-serif;
}

.total-row td {
    background-color: #eff6ff !important; /* Light blue highlight */
    color: #1e3a8a;
    font-weight: 800;
    border-top: 2px solid #93c5fd;
    font-size: 1.05em;
}

/* External Link Button (E-Bildirge) */
.external-link-btn {
    display: inline-block;
    background-color: #1a3b6e;
    color: white;
    text-align: center;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    font-size: 16px;
}

.external-link-btn:hover {
    background-color: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.15);
    color: white;
}

.link-section {
    padding: 50px 0;
    text-align: center;
    background-color: #f8fafc;
    border-radius: 8px;
    border: 1px dashed #cbd5e1;
}

/* Pratik Bilgiler List */
.form-link-list {
    list-style: none; /* Custom counters look better */
    counter-reset: pratik-counter;
    padding: 0;
}

.form-link-list li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 35px;
}

.form-link-list li::before {
    counter-increment: pratik-counter;
    content: counter(pratik-counter) ".";
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
    color: #64748b;
    width: 25px;
}

.form-link {
    color: #1e3a8a;
    text-decoration: underline;
    font-weight: 500;
    transition: all 0.2s;
    display: inline-block;
}

.form-link:hover {
    color: #2563eb;
    text-decoration: none;
    transform: translateX(3px);
}

.content-text {
    color: #334155;
    line-height: 1.7;
    margin-bottom: 25px;
}

.external-link-section {
    margin-top: 15px;
    font-size: 13px;
    color: #64748b;
}

.external-link {
    color: #3b82f6;
    font-weight: 500;
}

.external-link:hover {
    text-decoration: underline;
}

/* Vergi Türü Kodları Tablosu */
.vergi-kodlari-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.vergi-kodlari-table th {
    background-color: #1a3b6e;
    color: white;
    padding: 12px 15px;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid #0f2650;
}

.vergi-kodlari-table td {
    padding: 10px 15px;
    border: 1px solid #e2e8f0;
    color: #333;
    font-size: 14px;
}

.vergi-kodlari-table tr:nth-child(even) {
    background-color: #f8fafc;
}

.vergi-kodlari-table tr:hover {
    background-color: #eff6ff;
}

/* Banka Adları Listesi */
.bank-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.bank-list li {
    background-color: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.bank-list li:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    border-color: #3b82f6;
}

.bank-link {
    display: block;
    padding: 15px;
    color: #334155;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
}

.bank-link:hover {
    color: #1e3a8a;
}

/* Yıllık İzin Tablosu */
.izin-tablosu {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.izin-tablosu th {
    background-color: #1a3b6e;
    color: white;
    padding: 12px 15px;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid #0f2650;
}

.izin-tablosu td {
    padding: 12px 15px;
    border: 1px solid #e2e8f0;
    color: #333;
    font-weight: 500;
}

.izin-tablosu tr:nth-child(even) {
    background-color: #f8fafc;
}

.izin-tablosu tr:hover {
    background-color: #eff6ff;
}
