/* Base Styles */
:root {
    --primary-color: #ff6000; /* Hepsiburada orange */
    --primary-dark: #e55600;
    --secondary-color: #003087; /* Trust blue */
    --accent-color: #232f3e; /* Amazon dark blue */
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --text-color: #333;
    --text-light: #666;
    --border-color: #e1e1e1;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --info-color: #17a2b8;
    --box_shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --border-radius: 4px; /* Daha köşeli görünüm için azaltıldı */
    --transition: all 0.3s ease;
    --card-bg: #fff;
    --positive-color: #28a745;
    --negative-color: #dc3545;
    --neutral-color: #6c757d;
    --pending-color: #ffc107;
    --resolved-color: #28a745;
    --header-height: 70px; /* Sabit header yüksekliği */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #f5f5f5;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.section-title {
    text-align: center;
    margin-bottom: 15px;
    font-size: 32px;
    color: var(--accent-color);
    position: relative;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 40px;
    font-size: 18px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    text-align: center;
}

.btn:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
}

.btn-secondary:hover {
    background-color: #002970;
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

.btn-lg {
    padding: 12px 24px;
    font-size: 16px;
}

.btn i {
    margin-right: 8px;
}

.view-all-link {
    text-align: center;
    margin-top: 40px;
}

.view-all-link a {
    font-weight: 600;
    font-size: 18px;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
}

.view-all-link a i {
    margin-left: 8px;
    transition: var(--transition);
}

.view-all-link a:hover i {
    transform: translateX(5px);
}

.avatar {
    border-radius: 50%;
    object-fit: cover;
}

/* Header Styles - Yeniden Düzenlendi */
header {
    background-color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    height: var(--header-height);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 15px;
}

.logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo h1 {
    color: var(--accent-color);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin: 0;
}

.logo h1 span {
    color: var(--primary-color);
}

/* CSS-only Mobile Menu */
.menu-toggle {
    display: none;
}

.menu-icon {
    display: none; /* Varsayılan olarak gizli */
}

nav {
    display: flex;
    align-items: center;
    height: 100%;
}

/* Main Menu with Dropdowns */
.main-menu {
    display: flex;
    height: 100%;
    margin: 0;
    padding: 0;
}

.main-menu > li {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    margin: 0;
}

.main-menu > li > a {
    color: var(--dark-color);
    font-weight: 500;
    padding: 0 15px;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    transition: var(--transition);
}

.main-menu > li > a:hover {
    color: var(--primary-color);
    background-color: rgba(245, 245, 245, 0.5);
}

.main-menu > li > a.active {
    color: var(--primary-color);
    font-weight: 600;
}

.main-menu > li > a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
}

/* Desktop dropdown toggle */
.dropdown-toggle i {
    margin-left: 5px;
    font-size: 12px;
    transition: transform 0.3s ease;
}

/* Hide mobile dropdown toggles on desktop */
.dropdown-toggle-input,
.dropdown-arrow {
    display: none;
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 220px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s ease;
    z-index: 100;
    border: 1px solid var(--border-color);
    border-top: 2px solid var(--primary-color);
}

/* Desktop dropdown hover */
@media (min-width: 769px) {
    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

.dropdown-menu li {
    margin: 0;
    width: 100%;
    height: auto;
    display: block;
}

.dropdown-menu a {
    padding: 10px 20px;
    display: block;
    color: var(--text-color);
    font-weight: 400;
    height: auto;
    width: 100%;
}

.dropdown-menu a:hover {
    background-color: #f8f9fa;
    color: var(--primary-color);
}

.dropdown-menu a::after {
    display: none;
}

/* User Actions */
.user-actions {
    display: flex;
    gap: 10px;
    height: 100%;
    align-items: center;
    margin-left: 20px;
}

.user-actions .btn {
    padding: 8px 16px;
    font-weight: 500;
    border-radius: var(--border-radius);
    font-size: 14px;
    letter-spacing: 0.2px;
}

/* User Profile Dropdown */
.user-profile {
    display: flex;
    align-items: center;
    gap: 15px;
    height: 100%;
    margin-left: 20px;
}

.user-dropdown {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.user-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 15px;
    height: 100%;
    transition: var(--transition);
    cursor: pointer;
}

.user-dropdown-toggle:hover {
    background-color: rgba(245, 245, 245, 0.5);
}

.user-dropdown-toggle .avatar {
    width: 32px;
    height: 32px;
    border-radius: 4px;
}

.user-dropdown-toggle .username {
    font-weight: 500;
    color: var(--text-color);
}

.user-dropdown-toggle i {
    font-size: 12px;
    color: var(--text-light);
    transition: transform 0.3s ease;
}

.user-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: white;
    min-width: 220px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s ease;
    z-index: 100;
    border: 1px solid var(--border-color);
    border-top: 2px solid var(--primary-color);
}

/* Desktop user dropdown hover */
@media (min-width: 769px) {
    .user-dropdown:hover .user-dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

.user-dropdown-menu li {
    margin: 0;
    width: 100%;
}

.user-dropdown-menu a {
    padding: 10px 20px;
    display: flex;
    align-items: center;
    color: var(--text-color);
    font-weight: 400;
}

.user-dropdown-menu a i {
    margin-right: 10px;
    width: 16px;
    text-align: center;
    color: var(--text-light);
}

.user-dropdown-menu a:hover {
    background-color: #f8f9fa;
    color: var(--primary-color);
}

.user-dropdown-menu a:hover i {
    color: var(--primary-color);
}

.user-dropdown-menu .divider {
    height: 1px;
    background-color: var(--border-color);
    margin: 8px 0;
}

.user-dropdown-menu .logout {
    color: var(--danger-color);
}

.user-dropdown-menu .logout i {
    color: var(--danger-color);
}

.user-dropdown-menu .badge {
    background-color: var(--primary-color);
    color: white;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 10px;
    margin-left: auto;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 80px 0 40px;
    position: relative;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.search-bar {
    display: flex;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.search-bar input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    font-size: 16px;
}

.search-bar button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0 25px;
    cursor: pointer;
    transition: var(--transition);
}

.search-bar button:hover {
    background-color: var(--primary-dark);
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-buttons a {
    flex: 1;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px 30px;
    border-radius: var(--border-radius);
    backdrop-filter: blur(5px);
    min-width: 150px;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

/* Trust Score Section */
.trust-score {
    padding: 80px 0;
    background-color: white;
}

.trust-score-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.trust-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--box_shadow);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.trust-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.trust-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}

.site-logo img {
    height: 50px;
    object-fit: contain;
}

.trust-score-badge {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 15px rgba(255, 96, 0, 0.3);
}

.trust-score-badge .score {
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

.trust-score-badge .score-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trust-card-body {
    padding: 20px;
}

.trust-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--accent-color);
}

.rating-stars {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    color: var(--warning-color);
}

.rating-stars i {
    margin-right: 2px;
}

.rating-stars span {
    margin-left: 10px;
    color: var(--text-light);
    font-size: 14px;
}

.trust-metrics {
    margin-bottom: 20px;
}

.metric {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.metric-label {
    width: 40%;
    font-size: 14px;
    color: var(--text-color);
}

.metric-bar {
    flex: 1;
    height: 8px;
    background-color: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
    margin: 0 10px;
}

.metric-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 4px;
}

.metric-value {
    width: 15%;
    font-size: 14px;
    font-weight: 600;
    text-align: right;
    color: var(--primary-color);
}

.trust-stats {
    display: flex;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.trust-stat {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: var(--text-light);
}

.trust-stat i {
    margin-right: 5px;
}

.trust-stat:nth-child(1) i {
    color: var(--positive-color);
}

.trust-stat:nth-child(2) i {
    color: var(--negative-color);
}

.trust-stat:nth-child(3) i {
    color: var(--success-color);
}

.trust-card-footer {
    display: flex;
    padding: 15px 20px;
    border-top: 1px solid var(--border-color);
    gap: 10px;
}

.trust-card-footer a {
    flex: 1;
    text-align: center;
}

/* Latest Reviews Section */
.latest-reviews {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.review-filter {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-btn {
    padding: 8px 20px;
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: 30px;
    font-weight: 500;
    transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.review-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.review-item {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--box_shadow);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.review-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    background-color: #f8f9fa;
}

.review-site {
    display: flex;
    align-items: center;
}

.review-site img {
    height: 40px;
    object-fit: contain;
    margin-right: 15px;
}

.review-site h3 {
    font-size: 18px;
    color: var(--accent-color);
}

.review-rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rating-score {
    font-size: 24px;
    font-weight: 700;
}

.review-rating.positive .rating-score {
    color: var(--positive-color);
}

.review-rating.negative .rating-score {
    color: var(--negative-color);
}

.review-content {
    padding: 20px;
}

.review-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.review-title h4 {
    font-size: 20px;
    color: var(--text-color);
}

.review-date {
    font-size: 14px;
    color: var(--text-light);
}

.review-content p {
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.7;
}

.review-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.review-author {
    display: flex;
    align-items: center;
}

.review-author .avatar {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.review-tags {
    display: flex;
    gap: 8px;
}

.tag {
    padding: 4px 10px;
    background-color: #f0f0f0;
    border-radius: 20px;
    font-size: 12px;
    color: var(--text-color);
}

.review-footer {
    padding: 15px 20px;
    border-top: 1px solid var(--border-color);
    background-color: #f8f9fa;
}

.review-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.action-btn {
    color: var(--text-light);
    font-size: 14px;
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.action-btn i {
    margin-right: 5px;
}

.action-btn:hover {
    color: var(--primary-color);
}

.complaint-status {
    margin-bottom: 15px;
    padding: 8px 15px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
}

.complaint-status i {
    margin-right: 5px;
}

.complaint-status.pending {
    background-color: rgba(255, 193, 7, 0.1);
    color: var(--pending-color);
}

.complaint-status.resolved {
    background-color: rgba(40, 167, 69, 0.1);
    color: var(--resolved-color);
}

.company-response {
    background-color: #f0f7ff;
    border-radius: var(--border-radius);
    padding: 15px;
    margin-bottom: 15px;
    border-left: 4px solid var(--secondary-color);
}

.response-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.company-logo {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

.company-name {
    font-weight: 600;
    color: var(--secondary-color);
    margin-right: auto;
}

.response-date {
    font-size: 12px;
    color: var(--text-light);
}

.company-response p {
    font-size: 14px;
    color: var(--text-color);
    margin: 0;
}

/* Complaint Categories Section */
.complaint-categories {
    padding: 80px 0;
    background-color: white;
}

.category-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.category-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--box_shadow);
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.category-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.category-card h3 {
    margin-bottom: 20px;
    color: var(--accent-color);
}

.category-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.category-stats .stat {
    text-align: center;
}

.category-stats .stat-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.category-stats .stat-label {
    font-size: 14px;
    color: var(--text-light);
}

.category-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 600;
}

.category-link i {
    margin-left: 5px;
    transition: var(--transition);
}

.category-link:hover i {
    transform: translateX(5px);
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.steps {
    display: flex;
    justify-content: space-between;
    margin: 60px 0;
    position: relative;
    flex-wrap: wrap;
}

.step {
    text-align: center;
    width: 220px;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
}

.step-icon {
    width: 80px;
    height: 80px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    box-shadow: var(--box_shadow);
    color: var(--primary-color);
    font-size: 30px;
}

.step h3 {
    margin-bottom: 15px;
    color: var(--accent-color);
}

.step p {
    color: var(--text-light);
    font-size: 15px;
}

.steps::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 10%;
    right: 10%;
    height: 4px;
    background-color: #e1e1e1;
    z-index: 1;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff8c00 100%);
    color: white;
    border-radius: var(--border-radius);
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 96, 0, 0.2);
}

.cta-box h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.cta-box p {
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Testimonials Section - CSS-only Slider */
.testimonials {
    padding: 80px 0;
    background-color: white;
}

.testimonial-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-slider input {
    display: none;
}

.testimonial-slides {
    display: flex;
    width: 300%;
    transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
    width: 33.33%;
    padding: 20px;
}

#testimonial-1:checked ~ .testimonial-slides {
    transform: translateX(0);
}

#testimonial-2:checked ~ .testimonial-slides {
    transform: translateX(-33.33%);
}

#testimonial-3:checked ~ .testimonial-slides {
    transform: translateX(-66.66%);
}

.testimonial-content {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--box_shadow);
    padding: 30px;
    position: relative;
    border: 1px solid var(--border-color);
}

.quote-icon {
    font-size: 30px;
    color: var(--primary-color);
    opacity: 0.2;
    margin-bottom: 20px;
}

.testimonial-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: var(--text-color);
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author .avatar {
    width: 60px;
    height: 60px;
    margin-right: 15px;
}

.author-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--accent-color);
}

.site-info {
    display: flex;
    align-items: center;
}

.site-info img {
    height: 20px;
    margin-right: 10px;
}

.site-info span {
    font-size: 14px;
    color: var(--text-light);
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #e1e1e1;
    margin: 0 5px;
    cursor: pointer;
    transition: var(--transition);
}

.nav-dot:hover {
    background-color: var(--primary-color);
}

#testimonial-1:checked ~ .testimonial-nav label:nth-child(1),
#testimonial-2:checked ~ .testimonial-nav label:nth-child(2),
#testimonial-3:checked ~ .testimonial-nav label:nth-child(3) {
    background-color: var(--primary-color);
    transform: scale(1.3);
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-block {
    padding: 20px;
}

.stat-icon {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    opacity: 0.9;
}

/* Newsletter Section */
.newsletter {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff8c00 100%);
    color: white;
}

.newsletter-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.newsletter h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.newsletter p {
    margin-bottom: 30px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto 20px;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    font-size: 16px;
}

.newsletter-form button {
    background-color: var(--accent-color);
    padding: 0 25px;
    border: none;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background-color: #1a2330;
}

.newsletter-privacy {
    font-size: 14px;
    opacity: 0.8;
}

.newsletter-privacy i {
    margin-right: 5px;
}

/* Footer */
footer {
    background-color: var(--accent-color);
    color: white;
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.footer-logo h2 span {
    color: var(--primary-color);
}

.footer-column p {
    margin-bottom: 20px;
    opacity: 0.8;
    font-size: 15px;
    line-height: 1.7;
}

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.contact-info li i {
    margin-right: 10px;
    color: var(--primary-color);
}

.app-download {
    margin-top: 20px;
}

.app-download h4 {
    margin-bottom: 15px;
    font-size: 16px;
}

.app-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .steps {
        justify-content: center;
        gap: 40px;
    }
    
    .steps::before {
        display: none;
    }
}

@media (max-width: 992px) {
    .hero h2 {
        font-size: 36px;
    }
    
    .trust-score-cards {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .stat-item {
        padding: 15px 20px;
        min-width: 120px;
    }
}

@media (max-width: 768px) {
    header {
        height: auto;
        min-height: var(--header-height);
    }
    
    header .container {
        padding: 10px 15px;
    }
    
    .menu-icon {
        display: flex;
        font-size: 22px;
        cursor: pointer;
        color: var(--dark-color);
        width: 40px;
        height: 40px;
        align-items: center;
        justify-content: center;
        border-radius: var(--border-radius);
    }
    
    .menu-icon:hover {
        background-color: #f5f5f5;
    }
    
    /* Mobil menü açıldığında tam sayfa olarak göster */
    .menu-toggle:checked ~ nav {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: white;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        padding: 0;
        z-index: 1000;
        overflow-y: auto;
        border-top: 1px solid var(--border-color);
    }
    
    .menu-toggle:not(:checked) ~ nav {
        display: none;
    }
    
    /* Mobil menü düzeltmeleri */
    .main-menu {
        flex-direction: column;
        width: 100%;
        height: auto;
    }
    
    .main-menu > li {
        margin: 0;
        width: 100%;
        height: auto;
        border-bottom: 1px solid var(--border-color);
        display: block;
    }
    
    .main-menu > li > a {
        padding: 15px;
        justify-content: space-between;
        height: auto;
        display: flex;
    }
    
    .main-menu > li > a.active::after {
        display: none;
    }
    
    .main-menu > li > a.active {
        background-color: #f8f9fa;
    }
    
    /* Dropdown konumlandırma düzeltmesi */
    .dropdown {
        position: relative;
        width: 100%;
    }
    
    .dropdown-toggle {
        position: relative;
        width: 100%;
    }
    
    /* Mobil dropdown toggles */
    .dropdown-arrow {
        display: flex;
        position: absolute;
        right: 0;
        top: 0;
        cursor: pointer;
        padding: 15px;
        height: 100%;
        align-items: center;
        justify-content: center;
        z-index: 2;
        width: 50px;
    }
    
    .dropdown-arrow i {
        transition: transform 0.3s ease;
        font-size: 16px;
        color: var(--primary-color);
    }
    
    .dropdown-toggle-input:checked ~ .dropdown-arrow i {
        transform: rotate(180deg);
    }
    
    /* Mobil dropdown menü */
    .dropdown-menu {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0;
        display: none;
        border: none;
        border-top: 1px solid var(--border-color);
        border-radius: 0;
        background-color: #f8f9fa;
        margin: 0;
    }
    
    /* Dropdown menü açıldığında göster */
    .dropdown-toggle-input:checked ~ .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    
    .dropdown-menu li:last-child {
        border-bottom: none;
    }
    
    .dropdown-menu a {
        width: 100%;
        padding: 15px;
        text-align: left;
        justify-content: flex-start;
    }
    
    .user-actions {
        margin: 15px;
        width: calc(100% - 30px);
        flex-direction: column;
        height: auto;
    }
    
    .user-actions .btn {
        width: 100%;
        padding: 12px;
    }
    
    .user-profile {
        margin: 15px;
        width: calc(100% - 30px);
        flex-direction: column;
        height: auto;
        gap: 10px;
    }
    
    /* Kullanıcı dropdown menüsü düzeltmesi */
    .user-dropdown {
        position: relative;
        width: 100%;
        height: auto;
    }
    
    .user-dropdown-toggle {
        width: 100%;
        padding: 12px;
        height: auto;
        justify-content: space-between;
        border: 1px solid var(--border-color);
        border-radius: var(--border-radius);
        position: relative;
    }
    
    .user-dropdown-menu {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        display: none;
        border: 1px solid var(--border-color);
        border-top: none;
        border-radius: 0 0 var(--border-radius) var(--border-radius);
        margin-top: -1px;
    }
    
    /* Kullanıcı dropdown menüsü açıldığında göster */
    .dropdown-toggle-input:checked ~ .user-dropdown-menu {
        display: block;
    }
    
    .user-dropdown > .dropdown-arrow {
        position: absolute;
        right: 10px;
        top: 0;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 2;
    }
    
    .user-dropdown-toggle i {
        display: none;
    }
    
    .user-profile .btn {
        width: 100%;
    }
    
    .hero h2 {
        font-size: 32px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .trust-metrics .metric {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .metric-label {
        width: 100%;
        margin-bottom: 5px;
    }
    
    .metric-bar {
        width: 100%;
        margin: 5px 0;
    }
    
    .metric-value {
        width: 100%;
        text-align: left;
    }
    
    .review-title {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .review-date {
        margin-top: 5px;
    }
    
    .review-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 60px 0 30px;
    }
    
    .hero h2 {
        font-size: 28px;
    }
    
    .search-bar {
        flex-direction: column;
    }
    
    .search-bar input {
        width: 100%;
    }
    
    .search-bar button {
        width: 100%;
        padding: 12px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        width: 100%;
    }
    
    .newsletter-form button {
        width: 100%;
        padding: 12px;
    }
    
    .trust-card-header {
        flex-direction: column;
        gap: 15px;
    }
    
    .trust-score-badge {
        margin: 0 auto;
    }
    
    .trust-stats {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .review-header {
        flex-direction: column;
        gap: 15px;
    }
    
    .review-site {
        width: 100%;
    }
    
    .review-actions {
        justify-content: space-between;
    }
    
    .action-btn {
        font-size: 12px;
    }
    
    .cta-box {
        padding: 30px 20px;
    }
    
    .cta-box h3 {
        font-size: 24px;
    }
}