/* Kadosan Oto Sanayi Sitesi - Main Stylesheet */

:root {
    --primary-color: #1e3a8a;
    --secondary-color: #3b82f6;
    --accent-color: #f59e0b;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f8fafc;
    --border-color: #e5e7eb;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #ffffff;
}

/* Top Contact Bar */
.top-contact-bar {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 0;
    font-size: 0.9rem;
}

.top-contact-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-left, .contact-right {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-item i {
    color: var(--accent-color);
    width: 16px;
}

/* Social Media Styles */
.social-media {
    display: flex;
    gap: 1rem;
    align-items: center;
    min-height: 32px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
    text-decoration: none;
}

.social-link i {
    font-size: 0.9rem;
    width: auto;
}

/* Main Header */
.main-header {
    background: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    display: block;
    text-decoration: none;
}

.logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

/* Navigation */
.navbar {
    background: var(--primary-color);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 0 3rem;
}
 
.navbar-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar-nav .nav-link {
    color: white;
    font-weight: 500;
    padding: 1rem 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 4px;
}

.navbar-nav .nav-link:hover {
    color: var(--accent-color);
    background-color: rgba(255, 255, 255, 0.1);
}

.navbar-nav .nav-link i {
    font-size: 1rem;
}

.navbar-search {
    margin-left: auto;
}

.navbar-search .search-form {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.navbar-search .search-input {
    padding: 0.8rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    font-size: 0.9rem;
    width: 200px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.navbar-search .search-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.navbar-search .search-input:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.2);
}

.navbar-search .search-btn {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 0.8rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.navbar-search .search-btn:hover {
    background: #d97706;
}

/* Dropdown Menu Styles */
.dropdown-menu {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    padding: 0.5rem 0;
    margin-top: 0.5rem;
}

.dropdown-item {
    color: var(--text-dark);
    padding: 0.8rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.dropdown-item:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

.dropdown-item i {
    font-size: 0.9rem;
    width: 16px;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 0 1rem;
}

.footer h5 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer p, .footer a {
    color: #d1d5db;
    text-decoration: none;
    line-height: 1.8;
}

.footer a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid #374151;
    margin-top: 2rem;
    padding-top: 1rem;
    text-align: center;
    color: #9ca3af;
}

/* Index page specific styles */
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo-section {
    display: flex;
    justify-content: flex-start;
    flex-shrink: 0;
}

.header-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.header-stats .stat-item {
    text-align: center;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
    min-width: 120px;
}

.header-stats .stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.header-stats .stat-item:nth-child(1) .stat-number {
    color: var(--secondary-color);
}

.header-stats .stat-item:nth-child(2) .stat-number {
    color: #10b981;
}

.header-stats .stat-item:nth-child(3) .stat-number {
    color: var(--accent-color);
}

.header-stats .stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.header-stats .stat-desc {
    font-size: 0.85rem;
    color: var(--text-light);
}

.header-search {
    display: flex;
    justify-content: flex-end;
}

.header-search .search-form {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.header-search .search-input {
    padding: 1rem 1.2rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.9rem;
    width: 250px;
    background: white;
}

.header-search .search-input:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.header-search .search-btn {
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 1rem 1.2rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.header-search .search-btn:hover {
    background: var(--primary-color);
    transform: translateY(-1px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Stats Section */
.stats {
    background: var(--bg-light);
    padding: 3rem 0;
}

.stat-item {
    text-align: center;
    padding: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.stat-label {
    color: var(--text-light);
    font-size: 1rem;
    margin-top: 0.5rem;
}

/* News Slider Styles */
.news-slider {
    background: white;
    padding: 3rem 0;
    border-bottom: 1px solid var(--border-color);
}

.slider-container {
    position: relative;
    width: 100%;
}

.slider-item {
    display: none;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.slider-item.active {
    display: block;
}

.slider-card {
    display: flex;
    min-height: 300px;
}

.slider-image-section {
    flex: 0 0 50%;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slider-image-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-dark);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.slider-content-section {
    flex: 0 0 50%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.slider-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.slider-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.slider-status {
    background: var(--secondary-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.slider-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
    line-height: 1.3;
}

.slider-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.slider-read-more {
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    align-self: flex-start;
}

.slider-read-more:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    text-decoration: none;
    color: white;
}

.slider-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.slider-arrow {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    color: var(--text-dark);
    font-size: 1.2rem;
    padding: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow:hover {
    background: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Holiday Banner Styles */
.holiday-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 2rem 0;
}

.holiday-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.holiday-icon {
    flex: 0 0 auto;
}

.holiday-icon i {
    font-size: 2.5rem;
    color: var(--accent-color);
}

.holiday-text {
    flex: 1;
}

.holiday-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.holiday-text p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

.holiday-link {
    flex: 0 0 auto;
}

.holiday-btn {
    background: var(--accent-color);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.holiday-btn:hover {
    background: #d97706;
    transform: translateY(-2px);
    text-decoration: none;
    color: white;
}

/* Quick Search & Access Styles */
.quick-search-access {
    background: var(--bg-light);
    padding: 3rem 0;
}

.search-card, .access-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    height: 100%;
}

.search-header, .access-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.search-header i, .access-header i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.search-header h3, .access-header h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
}

.search-form .form-group {
    margin-bottom: 1.5rem;
}

.search-form label {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.search-form .form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.search-form .form-control:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.search-btn {
    width: 100%;
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.search-btn:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.access-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.access-item {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem 1rem;
    text-align: center;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.access-item:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
    text-decoration: none;
}

.access-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.access-item:hover i {
    color: white;
}

.access-item span {
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.2;
}

/* Sectors List Styles */
.sectors-list {
    background: white;
    padding: 3rem 0;
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.sector-item {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.sector-item:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
    text-decoration: none;
}

.sector-item h5 {
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive */
@media (max-width: 768px) {
    .top-contact-bar .container {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .contact-left, .contact-right {
        justify-content: center;
    }
    
    .social-media {
        gap: 0.75rem;
    }
    
    .social-link {
        width: 28px;
        height: 28px;
    }
    
    .social-link i {
        font-size: 0.8rem;
    }

    .navbar {
        padding: 0;
    }
    
    .navbar-collapse {
        background: var(--primary-color);
        padding: 0;
        margin: 0;
    }
    
    .navbar-nav {
        width: 100%;
        padding: 0;
        margin: 0;
    }
    
    .navbar-nav .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .navbar-nav .nav-link {
        width: 100%;
        padding: 1rem 1.5rem;
        border-radius: 0;
        justify-content: flex-start;
    }
    
    .navbar-nav .dropdown-menu {
        width: 100%;
        border: none;
        border-radius: 0;
        background: rgba(0, 0, 0, 0.1);
        box-shadow: none;
        margin: 0;
        padding: 0;
        position: static;
        transform: none;
    }
    
    .navbar-nav .dropdown-item {
        padding: 0.875rem 2rem;
        color: rgba(255, 255, 255, 0.9);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .navbar-nav .dropdown-item:hover {
        background: rgba(255, 255, 255, 0.1);
        color: white;
    }
    
    .navbar-nav .dropdown-item i {
        color: var(--accent-color);
        width: 20px;
        margin-right: 0.5rem;
    }
    
    .navbar-toggler {
        border: 1px solid rgba(255, 255, 255, 0.5);
        padding: 0.5rem 0.75rem;
        margin: 0.5rem 1rem;
    }
    
    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

    .navbar-search {
        margin-left: 0;
        margin-top: 1rem;
    }

    .navbar-search .search-input {
        width: 150px;
    }

    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }

    .header-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .search-wrapper {
        justify-content: center;
        width: 100%;
    }
    
    .search-box {
        max-width: 100%;
    }

    .header-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .header-search .search-input {
        width: 200px;
    }

    .slider-card {
        flex-direction: column;
        min-height: auto;
    }

    .slider-image-section {
        flex: 0 0 250px;
        min-height: 250px;
    }

    .slider-content-section {
        flex: 1;
        padding: 1.5rem;
    }

    .slider-content h2 {
        font-size: 1.4rem;
    }

    .slider-content p {
        font-size: 0.9rem;
    }

    .slider-arrow {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .access-grid {
        grid-template-columns: 1fr;
    }

    .search-card, .access-card {
        padding: 1.5rem;
    }

    .access-item {
        padding: 1rem;
    }

    .holiday-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .holiday-text h3 {
        font-size: 1.3rem;
    }

    .holiday-text p {
        font-size: 0.9rem;
    }

    .sectors-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 5rem 0 3rem;
    margin-top: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.page-header-content {
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.page-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    margin-bottom: 2.5rem;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.3px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.breadcrumb {
    background: rgba(0,0,0,0.2);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    display: inline-flex;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.2px;
    margin-top: 1rem;
}

.breadcrumb-item a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    opacity: 0.9;
}

.breadcrumb-item a:hover {
    opacity: 1;
    color: #fbbf24;
}

.breadcrumb-item.active {
    color: white;
    font-weight: 600;
    opacity: 1;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: rgba(255,255,255,0.8);
    font-weight: 600;
    margin: 0 0.5rem;
}

/* Page Content Styles */
.page-content {
    padding: 4rem 0;
    background: #ffffff;
}

.page-text-content {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.page-text-content h1,
.page-text-content h2,
.page-text-content h3,
.page-text-content h4,
.page-text-content h5,
.page-text-content h6 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.page-text-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.page-text-content ul,
.page-text-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.page-text-content li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.page-video {
    margin-top: 2rem;
    text-align: center;
}

.page-video iframe {
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Management Board Styles */
.management-board {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.section-title {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

.section-title i {
    margin-right: 0.5rem;
    color: var(--accent-color);
}

.management-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.management-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.management-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1.5rem;
    border: 4px solid var(--primary-color);
    position: relative;
}

.management-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.management-info h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.management-info p {
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0;
}

/* Dedicated Management Board Page Styles */
.management-board-section {
    padding: 4rem 0;
    background: #f8fafc;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.board-section {
    background: white;
    padding: 3.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    margin-bottom: 3.5rem;
    border: 1px solid rgba(0,0,0,0.05);
}

.board-title {
    color: var(--primary-color);
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    padding-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.board-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    border-radius: 2px;
}

.board-title i {
    margin-right: 0.75rem;
    color: var(--accent-color);
    font-size: 1.8rem;
    vertical-align: middle;
}

.member-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    position: relative;
    overflow: hidden;
}

.member-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.member-card:hover::before {
    transform: scaleX(1);
}

.member-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
    border-color: var(--primary-color);
}

.member-photo {
    width: 140px;
    height: 140px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    position: relative;
    background: #f8fafc;
    border: 3px solid #f1f5f9;
    transition: all 0.3s ease;
}

.member-card:hover .member-photo {
    border-color: var(--primary-color);
    transform: scale(1.02);
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.member-card:hover .member-photo img {
    transform: scale(1.08);
}

.member-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.member-name {
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.3;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.member-position {
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0;
    line-height: 1.5;
    letter-spacing: 0.2px;
    text-transform: capitalize;
}

/* Başkan Kartı Özel Stilleri */
.president-card {
    border: 2px solid var(--accent-color);
    box-shadow: 0 8px 32px rgba(245, 158, 11, 0.2);
    position: relative;
    overflow: visible;
}

.president-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--accent-color), var(--primary-color), var(--accent-color));
    border-radius: 14px;
    z-index: -1;
    animation: presidentGlow 3s ease-in-out infinite alternate;
}

@keyframes presidentGlow {
    0% {
        opacity: 0.7;
    }
    100% {
        opacity: 1;
    }
}

.president-card .member-photo {
    border: 4px solid var(--accent-color);
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.3);
}

.president-card .member-name {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 800;
}

.president-card .member-position {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
}

/* Animation Classes */
.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design for Pages */
@media (max-width: 768px) {
    .page-header {
        padding: 3rem 0 1.5rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .page-content {
        padding: 2rem 0;
    }
    
    .page-text-content,
    .management-board {
        padding: 2rem 1.5rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .management-card {
        padding: 1.5rem;
    }
    
    .management-photo {
        width: 120px;
        height: 120px;
    }
    
    .management-info h4 {
        font-size: 1.1rem;
    }
    
    .breadcrumb {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .president-card .member-name {
        font-size: 1.1rem;
    }
    
    .president-card .member-position {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .page-header {
        padding: 2.5rem 0 1.5rem;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .page-text-content,
    .management-board {
        padding: 1.5rem 1rem;
    }
    
    .management-photo {
        width: 100px;
        height: 100px;
    }
    
    .management-info h4 {
        font-size: 1rem;
    }
    
    .board-section {
        padding: 2rem 1rem;
    }
    
    .board-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .member-card {
        padding: 1.25rem 0.75rem;
    }
    
    .member-photo {
        width: 100px;
        height: 100px;
        margin-bottom: 1rem;
    }
    
    .member-name {
        font-size: 0.95rem;
    }
    
    .member-position {
        font-size: 0.85rem;
    }
    
    .breadcrumb {
        padding: 0.3rem 0.6rem;
        font-size: 0.75rem;
    }
    
    .president-card .member-name {
        font-size: 1rem;
    }
    
    .president-card .member-position {
        font-size: 0.85rem;
    }
}

/* Firmalar Sayfası Stilleri */
.search-filter-section {
    padding: 2rem 0;
    background: #f8fafc;
    border-bottom: 1px solid #e5e7eb;
}

.search-filter-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #e5e7eb;
}

.search-filter-form .form-group {
    margin-bottom: 0;
}

.search-filter-form .form-label {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.search-filter-form .form-label i {
    margin-right: 0.5rem;
    color: var(--accent-color);
}

.search-filter-form .form-control {
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.search-filter-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(30, 58, 138, 0.15);
}

.search-filter-form .btn-primary {
    background: var(--primary-color);
    border: none;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.search-filter-form .btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

.results-info {
    padding: 2rem 0 1rem;
    background: white;
}

.results-summary h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.results-summary h3 i {
    margin-right: 0.5rem;
    color: var(--accent-color);
}

.results-count {
    color: var(--text-light);
    font-size: 1rem;
    margin: 0;
}

.companies-section {
    padding: 2rem 0 4rem;
    background: #f8fafc;
}

.company-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all 0.3s ease;
}

.company-card-link:hover {
    text-decoration: none;
    color: inherit;
}

.company-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.company-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    border-color: var(--primary-color);
}

.company-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f1f5f9;
}

.company-logo {
    width: 120px;
    height: 120px;
    border-radius: 10px;
    overflow: hidden;
    margin-right: 1rem;
    background: #f8fafc;
    border: 2px solid #e5e7eb;
    flex-shrink: 0;
}

.company-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.company-info {
    flex: 1;
}

.company-name {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.company-sectors {
    color: var(--accent-color);
    font-size: 0.9rem;
    margin: 0;
    font-weight: 600;
    background: rgba(245, 158, 11, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    display: inline-block;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.company-details {
    margin-bottom: 1rem;
}

.detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.detail-item.address {
    background: rgba(30, 58, 138, 0.05);
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    border: 1px solid rgba(30, 58, 138, 0.1);
    font-weight: 600;
    color: var(--primary-color);
}

.detail-item i {
    width: 16px;
    margin-right: 0.75rem;
    color: var(--accent-color);
    font-size: 0.8rem;
}

.detail-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.detail-item a:hover {
    color: var(--secondary-color);
}

.company-description {
    margin-bottom: 1rem;
    flex: 1;
}

.company-description p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.company-actions {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #f1f5f9;
}

.company-actions .btn {
    width: 100%;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.company-actions .btn:hover {
    transform: translateY(-2px);
}

.no-results {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.no-results-icon {
    font-size: 4rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.no-results h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.no-results p {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Pagination Styles */
.pagination {
    margin-top: 3rem;
}

.pagination .page-link {
    color: var(--primary-color);
    border: 1px solid #e5e7eb;
    padding: 0.75rem 1rem;
    margin: 0 0.25rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.pagination .page-link:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.pagination .page-item.active .page-link {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* Responsive Design for Companies */
@media (max-width: 768px) {
    .search-filter-card {
        padding: 1.5rem;
    }
    
    .search-filter-form .form-control {
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .company-card {
        padding: 1.25rem;
    }
    
    .company-header {
        flex-direction: column;
        text-align: center;
    }
    
    .company-logo {
        margin-right: 0;
        margin-bottom: 1rem;
        width: 80px;
        height: 80px;
    }
    
    .company-name {
        font-size: 1rem;
    }
    
    .company-sectors {
        font-size: 0.8rem;
        padding: 0.2rem 0.4rem;
    }
    
    .detail-item.address {
        padding: 0.4rem 0.6rem;
        font-size: 0.85rem;
    }
    
    .results-summary h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .search-filter-section {
        padding: 1.5rem 0;
    }
    
    .search-filter-card {
        padding: 1rem;
    }
    
    .company-card {
        padding: 1rem;
    }
    
    .company-logo {
        width: 60px;
        height: 60px;
    }
    
    .company-name {
        font-size: 0.95rem;
    }
    
    .detail-item {
        font-size: 0.85rem;
    }
    
    .company-sectors {
        font-size: 0.75rem;
        padding: 0.15rem 0.3rem;
    }
    
    .detail-item.address {
        padding: 0.3rem 0.5rem;
        font-size: 0.8rem;
    }
    
    .no-results {
        padding: 3rem 1rem;
    }
    
    .no-results-icon {
        font-size: 3rem;
    }
    
    .pagination .page-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
    }
}

/* Clickable Company Cards */
.company-card {
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.company-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.company-card:active {
    transform: translateY(-2px);
}

.click-hint {
    text-align: center;
    padding: 0.75rem;
    color: var(--text-light);
    font-size: 0.9rem;
    font-style: italic;
    border-top: 1px solid #f1f5f9;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.click-hint i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.company-card:hover .click-hint {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.05) 0%, rgba(30, 58, 138, 0.1) 100%);
    color: var(--primary-color);
}


.search-wrapper {
    flex: 1;
    max-width: none;
    margin: 0;
    display: flex;
    justify-content: flex-end;
}

.search-box {
    position: relative;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    border-radius: 50px;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 500px;
}

.search-box:focus-within {
    box-shadow: 0 3px 20px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.search-input {
    border-radius: 50px;
    padding-left: 45px;
    padding-right: 20px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    height: 50px;
}

.search-input:focus {
    border-color: #0d6efd;
    box-shadow: none;
}

.search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    z-index: 10;
}

.search-button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50px;
    padding: 8px 20px;
    transition: all 0.3s ease;
}

.search-button:hover {
    background-color: #0b5ed7;
    transform: translateY(-50%) scale(1.05);
}

/* Dark theme search box */
.search-box.dark {
    background-color: #212529;
}

.search-box.dark .search-input {
    background-color: #212529;
    color: #fff;
}

.search-box.dark .search-input::placeholder {
    color: #6c757d;
}

.search-box.dark .search-icon {
    color: #6c757d;
}

/* Scrolling News Band */
.scrolling-news-band {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 0.75rem 0;
    overflow: hidden;
    position: relative;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.scrolling-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.scrolling-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.scrolling-label i {
    font-size: 1rem;
}

.scrolling-content {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.scrolling-text {
    display: flex;
    align-items: center;
    animation: scroll 60s linear infinite;
    white-space: nowrap;
}

.scrolling-text:hover {
    animation-play-state: paused;
}

.news-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-right: 2rem;
    padding: 0.25rem 0;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.news-item:hover {
    color: var(--accent-color);
    transform: scale(1.05);
}

.news-item[data-tip="arac"] {
    color: #10b981;
}

.news-item[data-tip="eleman"] {
    color: #3b82f6;
}

.news-item[data-tip="dukkan"] {
    color: #f59e0b;
}

.news-item i {
    font-size: 0.8rem;
}

.news-separator {
    color: rgba(255, 255, 255, 0.5);
    margin-right: 2rem;
    font-size: 1.2rem;
}

@keyframes scroll {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .scrolling-container {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .scrolling-label {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .news-item {
        font-size: 0.8rem;
        margin-right: 1.5rem;
    }
    
    .scrolling-text {
        animation-duration: 45s;
    }
}

/* Firma Puanlama Sistemi Stilleri - Firmalar Listesi */
/* Sektörler Bölümü */
.company-sectors-section {
    margin: 15px 0;
    padding: 12px 0;
    border-top: 1px solid #e5e7eb;
}

.sectors-label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 0.85rem;
    color: #6b7280;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sectors-label i {
    color: #3b82f6;
    font-size: 0.9rem;
}

.sectors-tags {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    max-height: 60px; /* 2 satır için yeterli yükseklik */
    overflow: hidden;
    position: relative;
}

.sectors-tags::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30px;
    height: 20px;
    background: linear-gradient(90deg, transparent 0%, white 100%);
    pointer-events: none;
}

.sector-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px 6px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    color: #374151;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-align: center;
    min-height: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sector-badge:hover {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    border-color: #3b82f6;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

/* Firma İsmi Altında Öneri Bilgisi */
.company-recommendation-header {
    margin-top: 8px;
    margin-bottom: 0;
}

.company-recommendation-header .recommendation-info {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: #10b981;
    font-weight: 500;
}

.company-recommendation-header .recommendation-info i {
    font-size: 0.9rem;
}

.company-recommendation {
    margin: 15px 0;
    padding: 12px 0;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.company-recommendation .recommendation-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #10b981;
    font-weight: 500;
}

.company-recommendation .recommendation-info i {
    font-size: 1rem;
}

/* Mobil uyumluluk */
@media (max-width: 768px) {
    .sectors-label {
        font-size: 0.8rem;
        gap: 6px;
    }
    
    .sectors-label i {
        font-size: 0.85rem;
    }
    
    .sectors-tags {
        max-height: 50px; /* Mobilde biraz daha küçük */
        grid-template-columns: repeat(2, 1fr); /* Mobilde 2 sütun */
    }
    
    .sector-badge {
        padding: 2px 4px;
        font-size: 0.65rem;
        min-height: 18px;
    }
    
    .company-recommendation-header .recommendation-info {
        font-size: 0.75rem;
        gap: 4px;
    }
    
    .company-recommendation-header .recommendation-info i {
        font-size: 0.8rem;
    }
    
    .company-recommendation .recommendation-info {
        font-size: 0.85rem;
        gap: 6px;
    }
    
    .company-recommendation .recommendation-info i {
        font-size: 0.9rem;
    }
}