:root {
    --primary-color: #4a6bff;
    --secondary-color: #6c757d;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
    --light-color: #f8f9fa;
    --dark-color: #101010;
    --firm-item: #8d8d8d26;
    --white: #ffffff;
    --black: #000000;
    
    --text-color: #333333;
    --text-light: #6c757d;
    --bg-color: #f5f7fa;
    --border-color: #e0e0e0;
    
    --header-height: 90px;
    --footer-height: 120px;
    --container-width: 1200px;
}

[data-theme="dark"] {
    --primary-color: #5d7aff;
    --secondary-color: #6c757d;
    --success-color: #2ecc71;
    --danger-color: #e74c3c;
    --warning-color: #f39c12;
    --info-color: #3498db;
    --light-color: #8d8d8d26;
    --dark-color: #101010;
    --firm-item: #8d8d8d26;
    --white: #ecf0f1;
    --black: #bdc3c7;
    
    --text-color: #ecf0f1;
    --text-light: #bdc3c7;
    --bg-color: #101010;
    --border-color: #34495e;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    transition: all 0.3s ease;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
.main-header {
    background-color: var(--dark-color);
    color: var(--white);
    height: var(--header-height);
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.home-icon {
    color: var(--white);
    font-size: 1.5rem;
    text-decoration: none;
}

.logo img {
    height: 90px;
}

.main-nav ul {
    display: flex
;
    list-style: none;
    align-items: center;
}

.main-nav ul li {
    margin-left: 20px;
}

.main-nav ul li a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.main-nav ul li a:hover {
    color: var(--primary-color);
}

.theme-toggle button {
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    font-size: 1.2rem;
    position: relative;
    width: 40px;
    height: 40px;
}

.theme-toggle button i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
}

.theme-toggle button .fa-sun {
    opacity: 0;
}

[data-theme="dark"] .theme-toggle button .fa-moon {
    opacity: 0;
}

[data-theme="dark"] .theme-toggle button .fa-sun {
    opacity: 1;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Slider Styles */
.slider-section {
    position: relative;
    overflow: hidden;  /* Görsel taşarsa gizle */
}

/* Swiper container'ın genişlik ve yükseklik ayarlarını yap */
.swiper-container {
    width: 100%;
    height: 100vh; /* Tam ekran yüksekliği verelim */
    overflow: hidden; /* Görsel dışa taşarsa gizle */
}

/* Swiper slide'ların konumlandırılması */
.swiper-slide {
    position: relative;
    overflow: hidden;
    width: 100%; /* Kaydırıcı öğesi tam genişlik */
}

/* Görsellerin sığması için object-fit: cover kullan */
.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Görseli tam ekran sığdırır */
}

/* Slider içeriği (yazı kısmı) */
.slider-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--white);
}

/* Başlık stilini düzenle */
.slider-content h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

/* Açıklama metni için stil */
.slider-content p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Sayfa geçişi için dot navigasyon */
.swiper-pagination-bullet {
    background: var(--white);
    opacity: 0.6;
    width: 12px;
    height: 12px;
}

/* Aktif sayfa geçişi butonu */
.swiper-pagination-bullet-active {
    background: var(--primary-color);
    opacity: 1;
}

/* Next/Prev butonları için stil */
.swiper-button-next, .swiper-button-prev {
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all 0.3s;
}

/* Next/Prev butonlarına hover efekti */
.swiper-button-next:hover, .swiper-button-prev:hover {
    background: rgba(0, 0, 0, 0.6);
}


/* Search Styles */
.search-section {
    padding: 30px 0;
    background-color: var(--dark-color);
}

.search-box {
    display: flex;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.search-box input {
    flex: 1;
    padding: 15px 25px;
    border: none;
    font-size: 1.1rem;
    outline: none;
}

.search-box button {
    padding: 0 25px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background-color 0.3s;
}

.search-box button:hover {
    background-color: #3a5bef;
}

.search-results {
    max-width: 800px;
    margin: 20px auto 0;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-height: 300px;
    overflow-y: auto;
    display: none;
}

.search-results .result-item {
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
    cursor: pointer;
    transition: background-color 0.3s;
}

.search-results .result-item:last-child {
    border-bottom: none;
}

.search-results .result-item:hover {
    background-color: var(--light-color);
}

/* Categories Styles */
.categories-section {
    padding: 40px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
    color: var(--primary-color);
}

.categories-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.category-item {
    padding: 10px 20px;
    background-color: var(--light-color);
    color: var(--text-color);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    border: 1px solid var(--border-color);
}

.category-item:hover, .category-item.active {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* View Options */
.view-options {
    padding: 20px 0;
    background-color: var(--light-color);
}

.view-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.view-button {
    padding: 8px 15px;
    background-color: transparent;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s;
}

.view-button:hover, .view-button.active {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* Firms List Styles */
.firms-section {
    padding: 40px 0;
    min-height: calc(100vh - var(--header-height) - var(--footer-height) - 400px);
}

.firms-list {
    margin-top: 30px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.firm-item {
    background-color: var(--firm-item);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    margin-bottom: 30px;
}

.firm-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* List View */
.list-view .firm-item {
    display: flex;
    padding: 20px;
}

.list-view .firm-logo {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    overflow: hidden;
    margin-right: 20px;
    flex-shrink: 0;
}

.list-view .firm-logo img {
    width: 100%;
    height: 100%;
    object-fit: scale-down;
}

.list-view .firm-details {
    flex: 1;
}

.list-view .firm-details h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.list-view .firm-details .category {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.list-view .firm-details .reason {
    margin-bottom: 10px;
    line-height: 1.6;
}

.list-view .source-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-block;
    margin-top: 10px;
}

/* Compact View */
.compact-view .firm-item {
    width: calc(50% - 30px);
    margin: 0 15px 30px;
    display: flex;
    padding: 15px;
}

.compact-view .firm-logo {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    overflow: hidden;
    margin-right: 15px;
    flex-shrink: 0;
}

.compact-view .firm-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.compact-view .firm-details {
    flex: 1;
}

.compact-view .firm-details h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.compact-view .firm-details .category {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 5px;
}

.compact-view .firm-details .reason {
    margin-bottom: 5px;
    line-height: 1.4;
    font-size: 0.9rem;
}

.compact-view .source-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.8rem;
    display: inline-block;
    margin-top: 5px;
}

/* Grid View */
.grid-view .firm-item {
    width: calc(50% - 30px);
    margin: 0 15px 30px;
    text-align: center;
    padding: 15px;
}

.grid-view .firm-logo-grid {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
}

.grid-view .firm-logo-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.grid-view .firm-details-grid h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.grid-view .firm-details-grid .category {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.grid-view .source-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-block;
    margin-top: 10px;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 50px 0;
    color: var(--text-light);
}

.no-results i {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

/* Footer Styles */
.main-footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.footer-about {
    flex: 1;
    max-width: 600px;
}

.footer-about h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.footer-about p {
    line-height: 1.6;
    opacity: 0.8;
}

.footer-report {
    display: flex;
    align-items: center;
}

.report-button {
    padding: 12px 25px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.report-button:hover {
    background-color: #3a5bef;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* Sticky Report Button */
.sticky-report {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.sticky-report button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.sticky-report button span {
    font-size: 0.7rem;
    margin-top: 2px;
}

.sticky-report button:hover {
    background-color: #3a5bef;
    transform: translateY(-3px);
}

/* Modal Styles Update */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    color: #101010;
    z-index: 1001;
    align-items: center;
    text-align: -webkit-center;
    padding: 20px;
    overflow-y: auto;
}

.modal-content {
    background-color: var(--white);
    border-radius: 10px;
    width: 100%;
    max-width: 500px;
    padding: 30px;
    position: relative;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
    transition: color 0.3s;
}

.close-modal:hover {
    color: var(--danger-color);
}

.modal h2 {
    margin-bottom: 20px;
    color: var(--primary-color);
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.submit-button {
    width: 100%;
    padding: 12px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: #3a5bef;
}

/* About Page Styles */
.about-page {
    padding: 60px 0 40px;
}

.page-title {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
    font-size: 2.5rem;
}

.about-content {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
}

.about-text {
    flex: 2;
}

.about-text h2 {
    color: var(--primary-color);
    margin: 25px 0 15px;
    font-size: 1.8rem;
}

.about-text p {
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.about-text ul {
    margin: 20px 0;
    padding-left: 20px;
}

.about-text li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.team-section {
    margin: 60px 0;
    text-align: center;
}

.team-section h2 {
    color: var(--primary-color);
    margin-bottom: 40px;
    font-size: 2rem;
}

.team-members {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.team-member {
    background: var(--white);
    border-radius: 10px;
    padding: 25px;
    width: 280px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 5px solid var(--primary-color);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.team-member p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.contact-info {
    background: var(--light-color);
    padding: 30px;
    border-radius: 10px;
    margin-top: 40px;
}

.contact-info h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
    font-size: 1.8rem;
}

.contact-info p {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.contact-info ul {
    list-style: none;
    max-width: 500px;
    margin: 0 auto;
}

.contact-info li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
}

.contact-info i {
    color: var(--primary-color);
    font-size: 1.3rem;
    width: 30px;
    text-align: center;
}

/* Navigation Styles */
.main-navigation {
    margin-left: auto;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-item {
    position: relative;
    margin-left: 15px;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
    gap: 8px;
}

.nav-link:hover, 
.nav-item.active .nav-link {
    background-color: rgba(255, 255, 255, 0.1);
}

.nav-link i {
    font-size: 1.1rem;
}

.report-button {
    background-color: var(--danger-color);
}

.report-button:hover {
    background-color: #c82333 !important;
}

.theme-toggle .nav-link {
    background: none;
    border: none;
    cursor: pointer;
}

.theme-toggle .dark-icon {
    display: none;
}

[data-theme="dark"] .theme-toggle .light-icon {
    display: none;
}

[data-theme="dark"] .theme-toggle .dark-icon {
    display: inline-block;
}

/* Submenu Styles */
.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    min-width: 200px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 100;
    transform: translateY(10px);
}

.nav-item:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu ul {
    list-style: none;
    padding: 10px 0;
    margin: 0;
}

.submenu li a {
    display: block;
    padding: 8px 20px;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s;
}

.submenu li a:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
}

/* Mobile Navigation */
@media (max-width: 992px) {
    .main-navigation {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        bottom: 0;
        background-color: var(--dark-color);
        z-index: 900;
        transform: translateX(100%);
        transition: transform 0.3s;
        overflow-y: auto;
    }
    
    .main-navigation.active {
        transform: translateX(0);
    }
    
    .nav-list {
        flex-direction: column;
        padding: 20px;
        align-items: stretch;
    }
    
    .nav-item {
        margin: 0 0 10px 0;
    }
    
    .nav-link {
        padding: 15px;
        justify-content: center;
    }
    
    .submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: rgba(0, 0, 0, 0.1);
        margin-top: 10px;
        display: none;
    }
    
    .nav-item:hover .submenu,
    .nav-item.active .submenu {
        display: block;
    }
    
    .submenu li a {
        color: var(--white);
        padding: 10px 15px 10px 30px;
    }
    
    .submenu li a:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }
}

/* Mobile Menu */
/* Mobil menü gizlenmiş olarak başlasın */
.mobile-menu {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.8);
    width: 250px; /* Menünün genişliği */
    height: 100vh; /* Tam ekran yüksekliği */
    padding: 20px;
    z-index: 1000;
}

/* Menüyü açarken gösterelim */
.mobile-menu.active {
    display: block;
}

/* Mobil menü öğeleri */
.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu ul li {
    margin-bottom: 15px;
}

.mobile-menu ul li a,
.mobile-menu ul li button {
    color: var(--text-color);
    font-size: 1.2rem;
    text-decoration: none;
    padding: 10px;
    display: block;
}


#mobileThemeToggle {
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 1.2rem;
    padding: 10px 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}