/* Temel Stiller */
:root {
    --primary-color: #e8dca8;
    --secondary-color: #2ecc71;
    --dark-color: #2c3e50;
    --light-color: #ecf0f1;
    --danger-color: #e74c3c;
    --warning-color: #f39c12;
    --success-color: #2ecc71;
    --gray-color: #95a5a6;
}

* {
    margin: 0;
    padding: 0;

    font-family: "Quicksand", sans-serif;
    letter-spacing: 1px;
}

body {
    background-color: #f8f4e0;
    color: #333;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: #505050;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: black;
}

.btn-primary:hover {
    background-color: #f1d237;
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
}

.btn-secondary:hover {
    background-color: #27ae60;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 80px 0;
    text-align: center;
    margin-bottom: 40px;
}

.hero-section h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Section Stilleri */
.section {
    margin-bottom: 50px;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

/* Listing Page Styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.listings-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.listings-header h1 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin: 0;
}

.listings-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.search-form {
    position: relative;
    min-width: 250px;
}

.search-form input {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 30px;
    font-size: 1rem;
    transition: all 0.3s;
    padding-right: 40px;
}

.search-form input:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

.search-form button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #7f8c8d;
    cursor: pointer;
}

.sort-dropdown {
    position: relative;
}

.sort-dropdown > span {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    padding: 10px 15px;
    background-color: #f8f4e0;
    border-radius: 5px;
}

.sort-dropdown ul {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    padding: 10px 0;
    min-width: 180px;
    z-index: 100;
    display: none;
}

.sort-dropdown:hover ul {
    display: block;
}

.sort-dropdown li a {
    display: block;
    padding: 8px 15px;
    color: #2c3e50;
    text-decoration: none;
    transition: all 0.2s;
}

.sort-dropdown li a:hover {
    background-color: #f8f9fa;
    color: #3498db;
}

.listings-content {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 30px;
}

.listings-sidebar {
    background: #f8f4e0;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    align-self: start;
    position: sticky;
    top: 20px;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    margin-bottom: 10px;
}

.category-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 10px;
    color: #2c3e50;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.2s;
}

.category-list li a:hover {
    background-color: #e8dca8;
}

.category-list li.active a {
    background-color: #3498db;
    color: white;
}

.category-list li span {
    background-color: #f8f9fa;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.8rem;
}

.category-list li.active span {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.section-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 40px 0 25px;
    color: #1a2b49;
    text-shadow: 0 2px 8px rgba(173, 216, 230, 0.4);
}

.listing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    padding: 10px;
}

/* Kart görünümü */
.listing-card {
    background: linear-gradient(180deg, #fefefe, #f3f8ff);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #d6e6ff;
}

.listing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.15);
}

/* Görsel */
.listing-thumbnail {
    position: relative;
    height: 190px;
    overflow: hidden;
    border-bottom: 1px solid #d6e6ff;
}

.listing-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.listing-card:hover .listing-thumbnail img {
    transform: scale(1.07);
}

/* Bilgi bölümü */
.listing-info {
    padding: 15px;
}

.listing-info h3 {
    margin: 0 0 10px;
    font-size: 1.15rem;
    color: #1e3859;
    font-weight: 600;
    transition: color 0.3s ease;
}

.listing-card:hover .listing-info h3 {
    color: #007bff;
}

/* Fiyat ve yazar */
.listing-price {
    font-weight: bold;
    color: #2c3e50;
    font-size: 1.05rem;
    margin-bottom: 5px;
}

.listing-author {
    color: #6b7c8c;
    font-size: 0.9rem;
}

/* Mobil uyum */
@media (max-width: 768px) {
    .listing-grid {
        gap: 18px;
    }
    .listing-card {
        border-radius: 10px;
    }
}


.no-results {
    text-align: center;
    padding: 50px 20px;
    background: #e8dca8;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.no-results i {
    font-size: 3rem;
    color: #bdc3c7;
    margin-bottom: 15px;
}

.no-results p {
    color: #000000;
    margin-bottom: 20px;
}

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    gap: 5px;
}

.page-link {
    display: inline-block;
    padding: 8px 15px;
    background-color: white;
    border: 1px solid #ddd;
    color: #2c3e50;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.2s;
}

.page-link:hover {
    background-color: #f8f9fa;
}

.page-link.active {
    background-color: #3498db;
    color: white;
    border-color: #3498db;
}

/* Responsive Design */
@media (max-width: 992px) {
    .listings-content {
        grid-template-columns: 1fr;
    }
    
    .listings-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .listings-header {
        flex-direction: column;
        align-items: stretch;
    }
    
    .listings-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .search-form {
        width: 100%;
    }
    
    .sort-dropdown {
        align-self: flex-start;
    }
    
    .listing-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }
}

@media (max-width: 480px) {
    .listing-grid {
        grid-template-columns: 1fr;
    }
    
    .pagination {
        flex-wrap: wrap;
    }
}

/* Header Stilleri */
header {
    background-color: #e8d9a5;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    display: flex;
    justify-content: space-between;
    background-color: #e8d9a5;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    color: var(--dark-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Footer */
footer {
    background: linear-gradient(45deg, #0e0e10, #1a1a1d);
    color: #cccccc;
    padding: 60px 0 30px;
    font-family: "Quicksand", sans-serif;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: auto;
    padding: 0 30px;
    animation: fadeInUp 1.2s ease-out forwards;
    opacity: 0;
}

.footer-column h3 {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    letter-spacing: 0.5px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #00dfc4;
    border-radius: 3px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 0.95rem;
    position: relative;
}

.footer-links a::before {
    content: '»';
    margin-right: 6px;
    color: #00dfc4;
    opacity: 0;
    transform: translateX(-5px);
    transition: 0.3s ease;
}

.footer-links a:hover {
    color: #00dfc4;
    transform: translateX(4px);
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

footer::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle at center, #00dfc450, transparent 70%);
    filter: blur(100px);
    z-index: -1;
    animation: pulse 6s infinite ease-in-out;
}

footer::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle at center, #00dfc430, transparent 70%);
    filter: blur(100px);
    z-index: -1;
    animation: pulse 7s infinite ease-in-out;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Copyright */
.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.85rem;
    color: #999;
}

/* Responsive */
@media (max-width: 600px) {
    .footer-column h3 {
        font-size: 1.1rem;
    }

    .footer-links a {
        font-size: 0.9rem;
    }

    .footer-content {
        padding: 0 15px;
    }
}

/* Auth Sayfaları */
.auth-container {
    display: flex;
    min-height: calc(100vh - 200px);
    align-items: center;
}

.auth-form {
    flex: 1;
    max-width: 500px;
    padding: 40px;
    background: #f8f4e0;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.auth-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.auth-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.auth-form h1 {
    margin-bottom: 30px;
    color: var(--dark-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-color);
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    border-color: var(--primary-color);
    outline: none;
}

.form-group small {
    display: block;
    margin-top: 5px;
    font-size: 0.8rem;
    color: var(--gray-color);
}

.auth-footer {
    margin-top: 20px;
    text-align: center;
    color: var(--gray-color);
}

.auth-footer a {
    color: var(--primary-color);
    font-weight: 600;
}

/* Alert Mesajları */
.alert {
    padding: 15px;
    margin: 20px 0;
    border-radius: 5px;
    font-weight: 500;
}

.alert-success {
    background-color: rgba(46, 204, 113, 0.2);
    color: var(--success-color);
    border-left: 4px solid var(--success-color);
}

.alert-danger {
    background-color: rgba(231, 76, 60, 0.2);
    color: var(--danger-color);
    border-left: 4px solid var(--danger-color);
}

.alert-info {
    background-color: rgba(52, 152, 219, 0.2);
    color: var(--primary-color);
    border-left: 4px solid var(--primary-color);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    background: white;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);

}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu ul li {
    margin-bottom: 15px;
}

.mobile-menu ul li a {
    color: var(--dark-color);
    font-weight: 500;
}
/* Responsive Tasarım */
@media (max-width: 992px) {
    .auth-container {
        flex-direction: column;
    }
    
    .auth-form {
        max-width: 100%;
        margin-bottom: 40px;
    }
    
    .auth-image {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
 
    
    .mobile-menu.active {
        display: block;
    }
    
    .logo-image {
        max-height: 40px;
    }
}
/* Listing Detail Sayfası */
.listing-detail {
    padding: 30px 0;
}

.listing-header {
    margin-bottom: 40px;
}

.breadcrumb {
    font-size: 0.9rem;
    color: var(--gray-color);
    margin-bottom: 15px;
}

.breadcrumb a {
    color: var(--gray-color);
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

.listing-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.author-info {
    display: flex;
    align-items: center;
}

.author-info img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

.listing-stats span {
    margin-left: 15px;
    color: var(--gray-color);
    font-size: 0.9rem;
}

.listing-stats i {
    margin-right: 5px;
    color: var(--primary-color);
}

.listing-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.listing-gallery {
    position: relative;
}

.main-image {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
}

.main-image img {
    width: 100%;
    height: auto;
    display: block;
}

.thumbnail-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.thumbnail-item {
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.thumbnail-item:hover {
    opacity: 0.8;
}

.thumbnail-item img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    display: block;
}

.listing-info {
    position: sticky;
    top: 20px;
    align-self: start;
}

.price-section {
    background: #f8f4e0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.price-section .price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    display: block;
    margin-bottom: 20px;
}

.btn-buy {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.rating-section {
    margin-bottom: 30px;
}

.stars {
    color: var(--warning-color);
    font-size: 1.2rem;
}

.stars .filled {
    color: var(--warning-color);
}

.stars span {
    color: var(--gray-color);
    font-size: 1rem;
    margin-left: 10px;
}

.description-section {
    margin-bottom: 30px;
}

.description-section h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.features-section {
    margin-bottom: 30px;
}

.features-section h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.features-section ul {
    list-style: none;
}

.features-section li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.features-section i {
    color: var(--success-color);
    margin-right: 10px;
}

.reviews-section {
    margin-bottom: 60px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.reviews-section h2 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--dark-color);
}

.reviews-list {
    display: grid;
    gap: 30px;
}

.review-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 20px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.reviewer-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.reviewer-info img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.review-stars {
    color: var(--warning-color);
    font-size: 0.9rem;
    margin-top: 5px;
}

.review-content {
    position: relative;
}

.review-content p {
    margin-bottom: 10px;
}

.review-content small {
    color: var(--gray-color);
    font-size: 0.8rem;
}

.add-review {
    background: #f8f4e0;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 60px;
}

.add-review h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.star-rating {
    font-size: 1.5rem;
    color: #ddd;
    margin-bottom: 15px;
}

.star-rating i {
    cursor: pointer;
    margin-right: 5px;
}

.star-rating .filled {
    color: var(--warning-color);
}

.related-listings {
    margin-bottom: 60px;
}

.related-listings h2 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--dark-color);
}

/* Profile Sayfası */
.profile-page {
    padding: 40px 0;
}

.profile-header {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.profile-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 40px;
    border: 5px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-info h1 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.profile-name {
    font-size: 1.1rem;
    color: var(--gray-color);
    margin-bottom: 20px;
}

.profile-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
}

.stat-item {
    text-align: center;
}

.stat-item strong {
    display: block;
    font-size: 1.5rem;
    color: var(--dark-color);
}

.stat-item span {
    font-size: 0.9rem;
    color: #505050;
}

.profile-bio {
    margin-bottom: 40px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 10px;
}

.profile-bio p {
    line-height: 1.8;
}

.profile-listings h2 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--dark-color);
}

/* Dashboard Sayfası */
.dashboard {
    padding: 40px 0;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.dashboard-header .profile-info {
    display: flex;
    align-items: center;
}

.dashboard-header .profile-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
}

.dashboard-header .profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-email {
    color: var(--gray-color);
    margin-bottom: 10px;
}

.profile-actions {
    display: flex;
    gap: 15px;
}

.dashboard-sections {
    display: grid;
    gap: 40px;
}

.membership-card {
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    width: 100%; /* Kartın tam genişlikte olması */
    max-width: 1200px; /* Maksimum genişlik */
    margin: 0 auto; /* Ortalamak için */
    
}

.membership-card.active {
    background: rgba(46, 204, 113, 0.1);
    border-left: 4px solid var(--success-color);
        margin-left: 10px; /* Kartı %10 sola kaydır */
}

.membership-card.inactive {
    background: rgba(231, 76, 60, 0.1);
    border-left: 4px solid var(--danger-color);
}

.membership-card h3 {
    margin-bottom: 10px;
}

.membership-card p {
    margin-bottom: 5px;
}

/* Mobil uyum */
@media (max-width: 768px) {
    .membership-card {
        width: 45%; /* Mobilde %90 genişlik */
        margin: 0 auto; /* Ortalamak için */
        padding: 15px; /* Mobilde padding biraz azaltılabilir */
    }

    .membership-card h3 {
        font-size: 1.2rem; /* Mobilde başlık boyutunu biraz küçült */
    }

    .membership-card p {
        font-size: 0.9rem; /* Mobilde yazı boyutunu küçült */
    }
}

.listing-status {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: bold;
}

.listing-status.active {
    background: rgba(46, 204, 113, 0.2);
    color: var(--success-color);
}

.listing-status.inactive {
    background: rgba(241, 196, 15, 0.2);
    color: var(--warning-color);
}

.listing-status.pending {
    background: rgba(52, 152, 219, 0.2);
    color: var(--primary-color);
}

/* Create Listing Sayfası */
.create-listing {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.create-listing h1 {
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.form-group small {
    display: block;
    margin-top: 5px;
    font-size: 0.8rem;
    color: var(--gray-color);
}

/* Responsive Tasarım */
@media (max-width: 992px) {
    .listing-content {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .profile-header {
        flex-direction: column;
        text-align: center;
    }
    
    .profile-avatar {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .profile-stats {
        justify-content: center;
    }
    
    .dashboard-header {
        flex-direction: column;
        text-align: center;
    }
    
    .dashboard-header .profile-info {
        flex-direction: column;
        margin-bottom: 20px;
    }
    
    .dashboard-header .profile-avatar {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .profile-actions {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .review-item {
        grid-template-columns: 1fr;
    }
    
    .reviewer-info {
        flex-direction: row;
        align-items: center;
        margin-bottom: 15px;
    }
    
    .reviewer-info img {
        margin-right: 15px;
        margin-bottom: 0;
    }
}
/* Membership Page */
.membership-page {
    padding: 40px 0;
}

.current-membership {
    margin-bottom: 40px;
}

.current-membership .alert {
    padding: 20px;
    border-radius: 10px;
}

.plans-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.plan-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.plan-card.current-plan {
    border-color: var(--success-color);
}

.plan-header {
    padding: 20px;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.plan-header h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.plan-price {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.plan-duration {
    font-size: 0.9rem;
    opacity: 0.8;
}

.plan-features {
    padding: 20px;
}

.plan-features ul {
    list-style: none;
}

.plan-features li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.plan-features i {
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--success-color);
}

.plan-footer {
    padding: 20px;
    text-align: center;
    border-top: 1px solid #eee;
}

.payment-history {
    margin-top: 40px;
}

.payment-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.payment-table th, .payment-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.payment-table th {
    background-color: #f9f9f9;
    font-weight: 600;
}

.status-badge {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.status-badge.completed {
    background-color: rgba(46, 204, 113, 0.2);
    color: var(--success-color);
}

.status-badge.pending {
    background-color: rgba(241, 196, 15, 0.2);
    color: var(--warning-color);
}

.status-badge.failed {
    background-color: rgba(231, 76, 60, 0.2);
    color: var(--danger-color);
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .plans-container {
        grid-template-columns: 1fr;
    }
    
    .payment-table {
        display: block;
        overflow-x: auto;
    }
}
/* Satın Al Butonu Stilleri */
.btn-buy {
    background-color: #28a745;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
    margin-left: 10px;
}

.btn-buy:hover {
    background-color: #218838;
    transform: translateY(-2px);
}

.price-section {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 10px;
}

.price {
    font-size: 24px;
    font-weight: bold;
    color: #2c3e50;
}

/* Mobil uyumluluk */
@media (max-width: 768px) {
    .price-section {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .btn-buy, .btn-secondary {
        width: 60%;
        margin: 5px 0;
    }
}
        /* Modern Giriş Yap/Kayıt Ol Butonları */
        .auth-buttons {
            display: flex;
            gap: 10px;
            margin-left: 15px;
        }
        
        .auth-buttons a {
            padding: 8px 20px;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s ease;
            text-align: center;
        }
        
        .auth-buttons a[href="login.php"] {
            background-color: #f8f9fa;
            color: #333;
            border: 1px solid #ddd;
        }
        
        .auth-buttons a[href="register.php"] {
            background-color: #4e73df;
            color: white;
            border: 1px solid #4e73df;
        }
        
        .auth-buttons a:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        
        .auth-buttons a[href="login.php"]:hover {
            background-color: #e9ecef;
        }
        
        .auth-buttons a[href="register.php"]:hover {
            background-color: #3a5ccc;
            border-color: #3a5ccc;
        }
        
        /* Dropdown menu styles */
        .dropdown {
            position: relative;
            display: inline-block;
        }
        
        .dropdown-menu {
            display: none;
            position: absolute;
            background-color: #fff;
            min-width: 200px;
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
            z-index: 1;
            border-radius: 4px;
            padding: 0;
            list-style: none;
        }
        
        .dropdown:hover .dropdown-menu {
            display: block;
        }
        
        .dropdown-menu li {
            padding: 0;
        }
        
        .dropdown-menu a {
            padding: 10px 15px;
            display: block;
                background: #e8dca8;
            text-decoration: none;
        }
        
        .dropdown-menu a:hover {
                background: #a49554;
        }
        
        /* Mobile menu styles */
        .mobile-menu {
            display: none;
            position: fixed;
            top: 70px;
            left: 0;
            right: 0;
            background-color: white;
            padding: 20px;
            box-shadow: 0 5px 10px rgba(0,0,0,0.1);
            z-index: 1000;
            max-height: calc(100vh - 70px);
            overflow-y: auto;
        }
        
        .mobile-menu.active {
            display: block;
        }
        
        .mobile-menu ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .mobile-menu li {
            margin-bottom: 10px;
        }
        
        .mobile-menu a {
            display: block;
            padding: 10px 15px;
            color: #333;
            text-decoration: none;
            border-radius: 4px;
        }
        
        .mobile-menu a:hover {
            background-color: #f5f5f5;
        }
        
        .mobile-dropdown-menu {
            display: none;
            padding-left: 0;
            margin-top: 5px;
        }
        
        .mobile-dropdown.active .mobile-dropdown-menu {
            display: block;
        }
        
        .mobile-menu-btn {
            display: none;
            cursor: pointer;
            font-size: 1.5rem;
        }
        
        @media (max-width: 992px) {
            .nav-links {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .auth-buttons {
                margin-left: 0;
                flex-direction: column;
                gap: 5px;
            }
        }
        
        .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}



.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1e3a8a;
  margin-bottom: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.section-title::after {
  content: "";
  width: 100px;
  height: 4px;
  background: #60a5fa;
  display: block;
  margin: 12px auto 0;
  border-radius: 3px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  padding: 35px 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(96,165,250,0.1), rgba(59,130,246,0.3));
  transition: 0.5s;
}

.feature-card:hover::before {
  left: 0;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.15);
}

.feature-icon {
  background: #e0f2fe;
  color: #2563eb;
  font-size: 2.5rem;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
  background: #2563eb;
  color: #fff;
  transform: rotate(8deg) scale(1.1);
}

.feature-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1e40af;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
}

/* Mobil uyum */
@media (max-width: 768px) {
  .section {
    padding: 60px 15px;
  }
  .section-title {
    font-size: 2rem;
  }
  .feature-card {
    padding: 25px 18px;
  }
}



/* Hero Section */
.hero-section {
    background: linear-gradient(180deg, #fdfcf7 0%, #f8f4e0 100%);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid #f2e5b8;
}

/* Konteyner */
.hero-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Sol taraf içerik */
.hero-content {
    flex: 1;
    max-width: 580px;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    color: #1c2430;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #0082c8, #2dc1e4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#sari {
    color: #b69b3b;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 35px;
    line-height: 1.7;
}

/* Butonlar */
.hero-cta {
    display: flex;
    gap: 15px;
    margin-bottom: 45px;
}

.btn {
    display: inline-block;
    padding: 13px 26px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background-color: #f1d237;
    color: #3b3b3b;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
    background-color: #eac221;
    transform: translateY(-3px);
}

.btn-outline {
    border: 2px solid #f1d237;
    color: #3b3b3b;
    background: transparent;
}

.btn-outline:hover {
    background-color: #f1d237;
    transform: translateY(-3px);
}

/* İstatistikler */
.hero-stats {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #007bff;
}

.stat-label {
    font-size: 0.9rem;
    color: #505050;
}

/* Sağ taraf görsel */
.hero-image {
    position: relative;
    flex: 1;
}

.hero-image img {
    width: 100%;
    max-width: 580px;
    border-radius: 14px;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
    transform: perspective(1000px) rotateY(-12deg);
    transition: transform 0.6s ease;
}

.hero-image:hover img {
    transform: perspective(1000px) rotateY(-4deg);
}

/* Yüzen rozet */
.floating-badge {
    position: absolute;
    top: 25px;
    right: -10px;
    background: #ffffff;
    padding: 10px 18px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 1px solid #eee3b0;
}

.floating-badge span {
    display: block;
    font-size: 0.8rem;
    color: #e07b39;
    font-weight: 600;
}

.floating-badge strong {
    font-size: 1rem;
    color: #2d3748;
}

/* Mobil uyum */
@media (max-width: 992px) {
    .hero-section .container {
        flex-direction: column;
        text-align: center;
    }
    .hero-image img {
        max-width: 100%;
        transform: none;
    }
    .hero-cta {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.4rem;
    }
    .hero-cta {
        flex-direction: column;
    }
}


/* Destek Sistemi Stilleri */
.support-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
}

.support-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.support-content {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 30px;
}

.support-sidebar {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    height: fit-content;
}

.filter-group {
    margin-bottom: 25px;
}

.filter-group h4 {
    margin-bottom: 10px;
    color: #333;
    font-size: 16px;
}

.filter-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.filter-list li {
    margin-bottom: 8px;
}

.filter-list li a {
    display: block;
    padding: 8px 12px;
    color: #555;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.2s;
}

.filter-list li.active a,
.filter-list li a:hover {
    background: #007bff;
    color: white;
}

.tickets-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ticket-card {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-left: 4px solid #ddd;
    transition: all 0.2s;
}

.ticket-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.ticket-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.ticket-header h3 {
    margin: 0;
    font-size: 18px;
}

.ticket-header h3 a {
    color: #333;
    text-decoration: none;
}

.ticket-header h3 a:hover {
    color: #007bff;
}

.ticket-meta {
    display: flex;
    gap: 10px;
}

.ticket-status, .ticket-priority {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
}

.ticket-status.status-open {
    background: #ffeaa7;
    color: #d35400;
}

.ticket-status.status-in_progress {
    background: #81ecec;
    color: #00cec9;
}

.ticket-status.status-resolved {
    background: #55efc4;
    color: #00b894;
}

.ticket-status.status-closed {
    background: #dfe6e9;
    color: #636e72;
}

.ticket-priority.priority-low {
    background: #dfe6e9;
    color: #636e72;
}

.ticket-priority.priority-medium {
    background: #74b9ff;
    color: #0984e3;
}

.ticket-priority.priority-high {
    background: #fab1a0;
    color: #e17055;
}

.ticket-priority.priority-urgent {
    background: #ff7675;
    color: #d63031;
}

.ticket-body {
    margin-bottom: 15px;
}

.ticket-body p {
    margin: 0;
    color: #555;
    line-height: 1.5;
}

.ticket-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 14px;
    color: #777;
}

.ticket-info {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.ticket-author {
    font-style: italic;
}

.ticket-form {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

@media (max-width: 768px) {
    .support-content {
        grid-template-columns: 1fr;
    }
    
    .support-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .support-actions {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .ticket-header {
        flex-direction: column;
        gap: 10px;
    }
    
    .ticket-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}