/* Genel Stiller */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Navbar Stilleri */
.navbar {
    background: linear-gradient(90deg, #6366F1 0%, #4F46E5 100%);
    padding: 1rem 0;
}

.navbar-brand {
    color: white !important;
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.brand-icon {
    font-size: 1.1rem;
    margin-right: 0.5rem;
}

.navbar .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    padding: 0.5rem 1rem;
    font-size: 0.95rem;
}

.navbar .nav-link:hover {
    color: white !important;
}

.navbar .dropdown-menu {
    border: none;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    border-radius: 8px;
    margin-top: 0.5rem;
    min-width: 220px;
}

.navbar .dropdown-item {
    padding: 0.7rem 1.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.navbar .dropdown-item:hover {
    background-color: #f8f9fa;
}

.nav-buttons .btn {
    padding: 0.5rem 1.2rem;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 500;
}

.btn-outline-primary {
    color: white;
    border-color: white;
    background: transparent;
}

.btn-outline-primary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: white;
}

.btn-primary {
    background-color: white;
    color: #3B82F6;
    border-color: white;
}

.btn-primary:hover {
    background-color: rgba(255, 255, 255, 0.9);
    color: #3B82F6;
    border-color: rgba(255, 255, 255, 0.9);
}

/* Responsive Ayarlar */
@media (max-width: 991px) {
    .nav-buttons {
        margin-top: 1rem;
        margin-left: 0 !important;
    }
    
    .navbar-collapse {
        padding: 1rem 0;
    }

    .navbar-toggler {
        border-color: rgba(255, 255, 255, 0.5);
    }

    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.7%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
}

/* Footer Stilleri */
.footer-gradient {
    background: linear-gradient(90deg, #6366F1 0%, #4F46E5 100%);
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.social-links a {
    font-size: 1.2rem;
    transition: opacity 0.3s ease;
}

.social-links a:hover {
    opacity: 0.8;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

@media (max-width: 768px) {
    .footer-gradient .col-md-3 {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
        display: flex;
        margin-bottom: 1rem;
    }
    
    .footer-gradient .text-md-end {
        text-align: center !important;
        margin-top: 1rem;
    }
}

/* Dropdown Menü Stilleri */
.dropdown-menu {
    border-radius: 0;
    border: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.dropdown-item:hover {
    background-color: #f8f9fa;
}

/* Hero Section Stilleri */
.hero-section {
    background: linear-gradient(90deg, #8B5CF6 0%, #3B82F6 100%);
    padding: 80px 0 140px;
    color: white;
    position: relative;
    overflow: hidden;
    margin-bottom: -1px;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    margin-bottom: 16px;
}

.hero-button {
    padding: 0.8rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.hero-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.hero-shape-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.hero-shape-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 120px;
    transform: rotateY(180deg);
}

.hero-shape-divider .shape-fill {
    fill: #FFFFFF;
}

/* Responsive Hero Stilleri */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0 100px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }

    .hero-button {
        padding: 0.7rem 2rem;
        font-size: 1rem;
    }
}

/* Features Section Stilleri */
.features-section {
    background-color: #f8fafc;
    padding: 100px 0;
}

.features-section .container {
    max-width: 1140px;
    margin: 0 auto;
}

.features-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 3.5rem;
    position: relative;
    text-align: center;
}

.features-section .row {
    justify-content: center;
    max-width: 1080px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 3rem 2rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(99, 102, 241, 0.1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 
                0 2px 4px -2px rgba(0, 0, 0, 0.05);
    max-width: 340px;
    margin: 0 auto;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
                0 8px 10px -6px rgba(0, 0, 0, 0.05);
}

.feature-icon-wrapper {
    background: rgba(99, 102, 241, 0.1);
    width: 96px;
    height: 96px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper {
    background: rgba(99, 102, 241, 0.15);
    transform: scale(1.1);
}

.feature-card:hover svg path,
.feature-card:hover svg circle {
    stroke: #4F46E5;
}

.feature-card h3 {
    color: #1e293b;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #64748b;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Responsive Features Stilleri */
@media (max-width: 768px) {
    .features-section .container {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .feature-card {
        max-width: 100%;
    }

    .features-section h2 {
        font-size: 2rem;
        margin-bottom: 3rem;
    }
    
    .feature-icon-wrapper {
        width: 80px;
        height: 80px;
        margin-bottom: 1.5rem;
    }
    
    .feature-icon-wrapper svg {
        width: 40px;
        height: 40px;
    }
    
    .feature-card h3 {
        font-size: 1.25rem;
    }

    .feature-card p {
        font-size: 1rem;
    }
}

/* Categories Section Stilleri */
.categories-section {
    background-color: white;
    padding: 80px 0;
}

.categories-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 3.5rem;
    text-align: center;
}

.category-card {
    display: block;
    text-decoration: none;
    background: #f8fafc;
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(99, 102, 241, 0.1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px -10px rgba(99, 102, 241, 0.15);
    background: white;
    text-decoration: none;
}

.category-icon {
    background: white;
    width: 72px;
    height: 72px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #6366F1;
    box-shadow: 0 4px 6px -1px rgba(99, 102, 241, 0.1);
    transition: all 0.4s ease;
    position: relative;
}

.category-card:hover .category-icon {
    background: #6366F1;
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.category-card h3 {
    color: #1e293b;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.category-card p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Responsive Categories Stilleri */
@media (max-width: 768px) {
    .categories-section {
        padding: 60px 0;
    }

    .categories-section h2 {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }

    .category-card {
        padding: 1.5rem;
    }

    .category-icon {
        width: 56px;
        height: 56px;
    }

    .category-card h3 {
        font-size: 1.1rem;
    }

    .category-card p {
        font-size: 0.9rem;
    }
}

/* Experts Section Stilleri */
.experts-section {
    background-color: #f8fafc;
    padding: 100px 0;
}

.experts-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 3.5rem;
    text-align: center;
}

.expert-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.expert-image {
    width: 100%;
    height: 300px; /* Sabit yükseklik */
    position: relative;
    overflow: hidden;
}

.expert-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.expert-info {
    padding: 1.5rem;
    text-align: center;
}

/* Hover efektleri */
.expert-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.expert-card:hover .expert-image img {
    transform: scale(1.05);
}

/* Responsive ayarlar */
@media (max-width: 768px) {
    .expert-image {
        height: 250px;
    }
}

@media (max-width: 576px) {
    .expert-image {
        height: 200px;
    }
}

.expert-status {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
}

.expert-status.online {
    background-color: #22c55e;
}

.expert-status.offline {
    background-color: #94a3b8;
}

.expert-info h3 {
    color: #1e293b;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.expert-specialty {
    display: inline-block;
    padding: 0.25rem 1rem;
    background: rgba(99, 102, 241, 0.1);
    color: #6366F1;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.expert-rating {
    color: #fbbf24;
    margin-bottom: 0.75rem;
}

.expert-rating i {
    font-size: 0.875rem;
    margin: 0 1px;
}

.expert-rating span {
    color: #64748b;
    margin-left: 4px;
    font-weight: 500;
}

.expert-info p {
    color: #64748b;
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 0;
}

.expert-desc {
    color: #64748b;
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.expert-desc i {
    color: #6366F1;
    font-size: 1rem;
}

.expert-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 1.25rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 12px;
}

.expert-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    display: flex;
    align-items: center;
}

.expert-price::before {
    content: '';
    margin-right: 2px;
}

.expert-action .btn {
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    background: #6366F1;
    border-color: #6366F1;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(99, 102, 241, 0.2);
    white-space: nowrap;
    color: white;
}

.expert-action .btn:hover {
    background: #4F46E5;
    border-color: #4F46E5;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px -3px rgba(99, 102, 241, 0.3);
    color: white;
}

.expert-card:hover .expert-action {
    background: #f1f5f9;
}

.expert-card .expert-image a {
    display: block;
    position: relative;
}

.expert-card .expert-info h3 a {
    color: #1e293b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.expert-card .expert-info h3 a:hover {
    color: #6366F1;
    text-decoration: none;
}

.expert-card .expert-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.expert-card .expert-image a:hover img {
    transform: scale(1.02);
}

/* h3 etiketinin varsayılan stilini override et */
.expert-card .expert-info a.expert-name,
.expert-card .expert-info a.expert-name:hover,
.expert-card .expert-info a.expert-name:focus,
.expert-card .expert-info a.expert-name:active {
    text-decoration: none !important;
    border-bottom: none !important;
}

/* Responsive Experts Stilleri */
@media (max-width: 768px) {
    .experts-section {
        padding: 60px 0;
    }

    .experts-section h2 {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }

    .expert-info {
        padding: 1.25rem;
    }

    .expert-info h3 {
        font-size: 1.1rem;
    }

    .expert-action {
        padding: 0.875rem;
        gap: 1rem;
        margin-top: 1rem;
    }
    
    .expert-price {
        font-size: 1.25rem;
    }
    
    .expert-action .btn {
        padding: 0.5rem 1.25rem;
        font-size: 0.875rem;
    }
}

/* Mobil cihazlar için yorumcu kartı düzeltmeleri */
@media (max-width: 767px) {
    .expert-card .expert-image {
        height: auto;
        width: 100%;
        overflow: hidden;
    }
    
    .expert-card .expert-image img {
        width: 100%;
        height: auto;
        aspect-ratio: 1/1;
        object-fit: cover;
        object-position: center top;
    }
    
    .expert-card {
        margin-bottom: 20px;
    }
}

/* How It Works Section Stilleri */
.how-it-works-section {
    background-color: #f8fafc;
    padding: 100px 0;
}

.step-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
                0 8px 10px -6px rgba(0, 0, 0, 0.05);
}

.step-icon {
    background: #f1f5f9;
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #6366F1;
    position: relative;
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #6366F1;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    border: 2px solid white;
}

.step-card h3 {
    color: #1e293b;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.step-card p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .how-it-works-section {
        padding: 60px 0;
    }

    .step-card {
        padding: 1.5rem;
    }

    .step-icon {
        width: 70px;
        height: 70px;
    }

    .step-card h3 {
        font-size: 1.1rem;
    }

    .step-card p {
        font-size: 0.9rem;
    }
}

/* Sayfa Başlığı Stilleri */
.page-header {
    background: linear-gradient(90deg, #6366F1 0%, #4F46E5 100%);
    padding: 60px 0;
    color: white;
    margin-bottom: 2rem;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .page-header {
        padding: 40px 0;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
}

/* FAQ Section Styles */
.faq-section {
    background-color: #f8fafc;
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 0.5rem !important;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.accordion-button {
    padding: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    background-color: white;
}

.accordion-button:not(.collapsed) {
    color: #6366F1;
    background-color: #f8fafc;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(99, 102, 241, 0.1);
}

.accordion-body {
    padding: 1.25rem;
    color: #64748b;
    line-height: 1.6;
}

.accordion-button::after {
    background-size: 1rem;
    transition: all 0.2s;
}

/* Section Background Colors */
.bg-white {
    background-color: #ffffff;
}

.bg-light {
    background-color: #f8fafc !important;
}

/* Section Spacing */
.features-section, .experts-section, .faq-section {
    position: relative;
}

/* Section Title Styles */
.features-section h2, .experts-section h2, .faq-section h2 {
    color: #1e293b;
    font-weight: 700;
    margin-bottom: 3rem;
    position: relative;
}

.features-section h2:after, .experts-section h2:after, .faq-section h2:after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #6366F1 0%, #4F46E5 100%);
    border-radius: 3px;
}

/* Optional: Section Divider */
.section-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(99, 102, 241, 0.1) 50%, transparent 100%);
    margin: 0;
    padding: 0;
    border: none;
}

/* Yorumcu Profil Sayfası Stilleri */
.expert-profile {
    background-color: #f8fafc;
}

.profile-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.profile-image {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #6366F1;
}

.status-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: #10B981;
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.profile-name {
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

.profile-rating {
    color: #FCD34D;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.profile-rating .rating-value {
    color: #1e293b;
    margin-left: 0.5rem;
}

.profile-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.stat-item {
    color: #6B7280;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.stat-item i {
    color: #6366F1;
}

.stat-item span {
    font-weight: 500;
}

.expertise-badge {
    display: inline-block;
    padding: 6px 12px;
    margin: 0 8px 8px 0;
    background-color: #f0f0ff;
    color: #4834d4;
    border-radius: 20px;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.expertise-badge:hover {
    background-color: #4834d4;
    color: #fff !important;
    transform: translateY(-2px);
    text-decoration: none;
}

/* Yorum Al Butonu */
.profile-action {
    margin-top: 2rem;
}

.action-button {
    display: flex;
    width: 100%;
    background: #4F46E5;
    border-radius: 25px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s ease;
    height: 50px;
    align-items: stretch;
}

.action-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px -3px rgba(99, 102, 241, 0.3);
}

.action-button .price {
    background: #FCD34D;
    padding: 0 2rem;
    color: #1e293b;
    font-weight: 600;
    font-size: 1.2rem;
    min-width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.action-button .text {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
    padding: 0 2rem;
}

.expert-header {
    transition: color 0.3s ease;
}

.expert-header:hover {
    color: #6366F1;
}

.expert-header h3 {
    margin: 0;
    padding: 0;
    text-decoration: none;
    border-bottom: none;
}

/* Yorumcu Link Stili */
.yorumcu-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    margin-top: 1rem;
}

.yorumcu-link .price {
    color: #4F46E5;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: underline;
    margin-bottom: 0.5rem;
}

.yorumcu-link .text {
    color: #4F46E5;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: underline;
}

.yorumcu-link:hover .price,
.yorumcu-link:hover .text {
    color: #6366F1;
}

/* Yorumcu Profil Sayfası - Sağ Kolon */
.content-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.content-card h2 {
    color: #1e293b;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.content-card p {
    color: #475569;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Yorumlar bölümü için ek stiller */
.reviews-container {
    max-height: 600px;
    overflow-y: auto;
    padding-right: 1rem;
    margin: -0.5rem;  /* Yorum kartları arasındaki boşluğu dengelemek için */
    padding: 0.5rem;
}

/* Yorum Kartı Stilleri */
.review-card {
    background: #f8fafc;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.review-card:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-avatar {
    background: #6366F1;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.reviewer-details {
    display: flex;
    flex-direction: column;
}

.review-rating {
    color: #FCD34D;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.review-date {
    color: #64748b;
    font-size: 0.85rem;
}

.review-content p {
    color: #1e293b;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.review-details {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.detail-item {
    background: #e2e8f0;
    color: #475569;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
}

/* Yorum sayısı stili */
.review-count {
    font-size: 0.9rem;
    font-weight: normal;
    color: #6c757d;
}

/* Sayfalama Stilleri */
.reviews-pagination {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.page-info {
    color: #64748b;
    font-size: 0.9rem;
}

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

.pagination .page-link {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    margin: 0 4px 8px;
    border-radius: 4px;
    background-color: #f8f9fa;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pagination .page-link:hover {
    background-color: #e9ecef;
}

.pagination .page-link.active {
    background-color: #6366F1;
    color: white;
}

/* Yorum yoksa gösterilecek stil */
.no-reviews {
    text-align: center;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 20px;
}

.no-reviews p {
    color: #6c757d;
    font-style: italic;
    margin: 0;
}

/* Yorum Al Sayfası Stilleri */
.yorumcu-preview-card {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.yorumcu-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 1rem;
}

.yorumcu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #6366F1;
}

.yorumcu-info h2 {
    color: #1e293b;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.kategori-secim-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.kategori-secim-card h3 {
    color: #1e293b;
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

/* Kategori kartları */
.kategori-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #f8fafc;
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.kategori-card:hover {
    border-color: #6366F1;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(99, 102, 241, 0.1);
}

.kategori-icon {
    font-size: 2rem;
    color: #6366F1;
    margin-bottom: 1rem;
}

.kategori-content {
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.kategori-content h4 {
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.kategori-content p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Kategori kartlarındaki devam et butonu */
.kategori-action {
    margin-top: auto;
    display: flex;
    justify-content: flex-end;
}

.kategori-action .action-button {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.25rem;
    font-size: 0.8125rem;
    border-radius: 50px;
    background: #6366F1;
    color: white;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: -0.01em;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.kategori-action .action-button:hover {
    background: #4F46E5;
    transform: translateY(-1px);
}

.kategori-action .action-button .text {
    margin: 0;
    padding: 0;
    line-height: 1.4;
}

/* Step Progress Stilleri */
.step-progress {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 0 2rem;
    margin: 0 auto;
}

.step-progress::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 50px;
    right: 50px;
    height: 2px;
    background: #e2e8f0;
    z-index: 1;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    background: white;
    border: 2px solid #e2e8f0;
    color: #94a3b8;
    position: relative;
}

.step-label {
    color: #94a3b8;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 0.25rem;
}

/* Aktif Step */
.step.active .step-number {
    background: #10B981;
    border-color: #10B981;
    color: white;
}

.step.active .step-label {
    color: #10B981;
    font-weight: 600;
}

/* Tamamlanmış Step */
.step.completed .step-number {
    background: #6366F1;
    border-color: #6366F1;
    color: white;
}

.step.completed .step-label {
    color: #6366F1;
}

/* Çizgi Renklendirmesi */
.step.completed::after {
    content: '';
    position: absolute;
    top: 25px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: #6366F1;
    z-index: 1;
}

.step.active::after {
    content: '';
    position: absolute;
    top: 25px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: #10B981;
    z-index: 1;
}

.step:last-child::after {
    display: none;
}

/* Mobil için düzenleme */
@media (max-width: 576px) {
    .step-progress {
        padding: 0 1rem;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .step-label {
        font-size: 0.8rem;
    }
}

/* Profil kartı ile stepler arası boşluk */
@media (max-width: 991.98px) {
    .profile-card {
        margin-bottom: 2rem;
    }
}

/* Sorular Form Stilleri */
.questions-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-info {
    border-radius: 15px;
}

.alert-info {
    background-color: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    color: #4F46E5;
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.selected-count {
    font-weight: 600;
    color: #6366F1;
}

.section-title {
    color: #1e293b;
    font-weight: 600;
}

.question-box {
    background: #f8fafc;
    border-radius: 15px;
    padding: 1.5rem;
}

.question-box .form-label {
    color: #1e293b;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.character-count {
    color: #64748b;
    font-size: 0.9rem;
    font-weight: normal;
}

.form-control {
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    padding: 1rem;
    resize: none;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #6366F1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

.form-control::placeholder {
    color: #94a3b8;
}

.form-actions {
    margin-top: 2rem;
}

.btn-outline-secondary {
    border: 2px solid #e2e8f0;
    color: #64748b;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-secondary:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
    color: #475569;
}

/* Karakter sayacı aktif/pasif stilleri */
.character-count.valid {
    color: #10B981;
}

.character-count.invalid {
    color: #EF4444;
}

/* Form Stilleri */
.form-container {
    max-width: 800px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1rem;
}

.form-label {
    color: #1e293b;
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: block;
}

.form-control, .form-select {
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: #6366F1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

.form-control::placeholder {
    color: #94a3b8;
}

.form-control.is-invalid, .form-select.is-invalid {
    border-color: #EF4444;
}

.invalid-feedback {
    color: #EF4444;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.form-buttons {
    margin-top: 2rem;
}

.btn-primary {
    background: #6366F1;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #4F46E5;
    transform: translateY(-2px);
}

/* Form Validasyon Stilleri */
.form-control.is-invalid,
.form-select.is-invalid {
    border-color: #EF4444;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23EF4444'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23EF4444' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.5rem 1.5rem;
}

.form-control.is-invalid:focus,
.form-select.is-invalid:focus {
    border-color: #EF4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2);
}

.invalid-feedback {
    display: none;
    color: #EF4444;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.form-control.is-invalid ~ .invalid-feedback,
.form-select.is-invalid ~ .invalid-feedback {
    display: block;
}

/* Required alan işareti */
.form-label.required::after {
    content: "*";
    color: #EF4444;
    margin-left: 4px;
}

/* Ödeme Başarılı/İptal Sayfası Stilleri */
.success-card, .cancel-card {
    border: none;
    border-radius: 20px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

.success-icon, .cancel-icon {
    font-size: 4rem;
}

.success-icon i {
    color: #10B981;
}

.cancel-icon i {
    color: #EF4444;
}

.success-card .card-title {
    color: #10B981;
}

.cancel-card .card-title {
    color: #EF4444;
}

/* Sipariş ID badge stili */
.order-id .badge {
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    background: linear-gradient(45deg, #6366F1, #4F46E5);
}

/* Success card animasyonu */
.success-card {
    animation: slideIn 0.5s ease-out;
}

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

/* Success icon animasyonu */
.success-icon i {
    animation: scaleIn 0.5s ease-out 0.2s both;
}

@keyframes scaleIn {
    from {
        transform: scale(0.5);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Upload Box Stilleri */
.upload-box {
    border: 2px dashed #e2e8f0;
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    margin-bottom: 1rem;
}

.upload-box.is-invalid {
    border-color: #ef4444;
    background-color: rgba(239, 68, 68, 0.05);
}

.upload-box.is-invalid .upload-status {
    color: #ef4444;
}

.upload-status {
    font-size: 0.8rem;
    margin-top: 0.5rem;
    color: #64748b;
}

.upload-label {
    font-weight: 600;
    margin: 0.5rem 0;
    color: #475569;
    font-size: 0.9rem;
}

.upload-label.required::after {
    content: ' *';
    color: #ef4444;
}

/* Tarot Kartları Stilleri */
.tarot-deck-container {
    margin-top: 2rem;
    width: 100%;
    overflow-x: hidden;
}

.tarot-deck {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 0.5rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.tarot-card {
    aspect-ratio: 3/5;
    background: #2a2a4a;
    border-radius: 8px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid #4a4a6a;
    min-width: 40px;
    perspective: 1000px;
    overflow: hidden;
}

.tarot-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
}

.tarot-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
    transform-style: preserve-3d;
}

.tarot-card img.flipped {
    transform: rotateY(180deg);
}

.tarot-card.selected {
    transform: scale(0.98);
    border-color: #8B5CF6; /* Mor tonu */
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.4);
    position: relative;
}

.tarot-card.selected::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(139, 92, 246, 0.2), rgba(99, 102, 241, 0.2));
    z-index: 1;
    border-radius: 8px;
    pointer-events: none;
}

.tarot-card.selected::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    z-index: 2;
}

/* Responsive grid ayarları */
@media (max-width: 1200px) {
    .tarot-deck {
        grid-template-columns: repeat(8, 1fr);
    }
}

@media (max-width: 992px) {
    .tarot-deck {
        grid-template-columns: repeat(8, 1fr);
        gap: 0.3rem;
        padding: 0.75rem;
    }
    
    .tarot-card {
        aspect-ratio: 2/3;
    }
}

@media (max-width: 768px) {
    .tarot-deck {
        grid-template-columns: repeat(8, 1fr);
        gap: 0.2rem;
        padding: 0.5rem;
    }
    
    .tarot-card {
        min-width: auto;
        aspect-ratio: 2/3;
        border-width: 1px;
        border-radius: 4px;
    }
    
    .tarot-card.selected::after {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .tarot-deck {
        grid-template-columns: repeat(8, 1fr);
        gap: 0.15rem;
        padding: 0.3rem;
    }
    
    .tarot-card {
        aspect-ratio: 5/7;
    }
}

@media (max-width: 400px) {
    .tarot-deck {
        grid-template-columns: repeat(8, 1fr);
        gap: 0.1rem;
        padding: 0.2rem;
    }
    
    .tarot-card.selected {
        transform: scale(0.95);
    }
    
    .tarot-card:hover {
        transform: none;
    }
}

/* Katina Kartları Stilleri - Tarot kartlarıyla aynı stiller */
.katina-deck-container {
    overflow-x: auto;
    padding: 1rem 0;
}

.katina-deck {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 0.5rem;
    padding: 0.5rem;
}

.katina-card {
    position: relative;
    aspect-ratio: 3/4;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    background-color: #fff;
}

.katina-card.closed {
    background-color: #8B5CF6;
    border-color: #7C3AED;
}

.katina-card.selected {
    pointer-events: none;
    opacity: 0.7;
}

.katina-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.katina-card.selected::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
    border-radius: 6px;
    pointer-events: none;
}

.katina-card.selected::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: white;
    z-index: 2;
}

/* Responsive düzenlemeler */
@media (max-width: 1200px) {
    .katina-deck {
        grid-template-columns: repeat(8, 1fr);
    }
}

@media (max-width: 768px) {
    .katina-deck {
        grid-template-columns: repeat(6, 1fr);
    }
}

@media (max-width: 576px) {
    .katina-deck {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* İlişki, Evlilik ve El falı açılımları için ortak upload box stilleri */
.iliski-acilimi .upload-box,
.evlilik-acilimi .upload-box,
.el-fali-upload .upload-box {
    height: auto;
    max-height: 250px;
}

.iliski-acilimi .upload-preview,
.evlilik-acilimi .upload-preview,
.el-fali-upload .upload-preview {
    width: 120px;
    height: 120px;
    margin: 0 auto 1rem;
}

.iliski-acilimi .upload-preview i,
.evlilik-acilimi .upload-preview i,
.el-fali-upload .upload-preview i {
    font-size: 2rem;
}

.iliski-acilimi .upload-label,
.evlilik-acilimi .upload-label,
.el-fali-upload .upload-label {
    margin-bottom: 0.75rem;
}

.iliski-acilimi .btn-upload,
.evlilik-acilimi .btn-upload,
.el-fali-upload .btn-upload {
    padding: 0.5rem 1rem;
}

/* Destek Sayfası Stilleri */
.support-section {
    position: relative;
    z-index: 1;
    background-color: #f8fafc;
}

.support-section .content-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 
                0 2px 4px -2px rgba(0, 0, 0, 0.05);
}

.support-section .form-label {
    font-weight: 500;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.support-section .alert-info {
    background-color: #f0f7ff;
    border-color: #e1effe;
    color: #1e40af;
}

.support-section .alert-info a {
    color: #1e40af;
    font-weight: 500;
    text-decoration: none;
}

.support-section .alert-info a:hover {
    text-decoration: underline;
}

.support-section .btn-primary {
    background: linear-gradient(90deg, #6366F1 0%, #4F46E5 100%);
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.support-section .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.2);
}

.category-badge {
    display: inline-block;
    padding: 6px 12px;
    margin: 0 8px 8px 0;
    background-color: #f0f0ff;
    color: #4834d4;
    border-radius: 20px;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.category-badge:hover {
    background-color: #4834d4;
    color: #fff;
    transform: translateY(-2px);
}

/* Fal Görselleri Upload Alanı */
.fal-images-section {
    background: #f8fafc;
    border-radius: 15px;
    padding: 2rem;
}

.section-title {
    color: #1e293b;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.upload-box {
    background: white;
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    height: 100%;
    transition: all 0.3s ease;
}

.upload-preview {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 10px;
    border: 2px dashed #e2e8f0;
    background: #f8fafc;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.upload-preview i {
    font-size: 2.5rem;
    color: #94a3b8;
}

.preview-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 8px;
    display: none;
}

.preview-image.loaded {
    display: block;
}

.upload-label {
    color: #1e293b;
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.file-input {
    display: none;
}

.btn-upload {
    background: #6366F1;
    color: white;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    width: 100%;
    font-weight: 500;
}

.btn-upload:hover {
    background: #4F46E5;
    transform: none;
}

/* Zorunlu alan iu015fareti */
.upload-label.required::after {
    content: "*";
    color: #EF4444;
    margin-left: 4px;
}

/* Hata durumu iu00e7in stiller */
.upload-box.is-invalid {
    border: 1px solid #ef4444;
}

.upload-box.is-invalid .upload-status {
    color: #ef4444;
    display: block;
}

/* Yu00fckleme durumu gu00f6stergesi */
.upload-status {
    font-size: 0.8rem;
    margin-top: 0.5rem;
    color: #64748b;
}

.upload-status.success {
    color: #10B981;
}

.upload-status.error {
    color: #EF4444;
}