/* Modern Tasarım İçin Genel Stiller */
:root {
    --primary: #5271ff;
    --secondary: #03c988;
    --danger: #ff6b6b;
    --warning: #ffd166;
    --dark: #2d3250;
    --light: #f8f9fa;
    --gray: #6c757d;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f0f2f5;
    color: #333;
    line-height: 1.6;
}

/* Header Styles */
.site-header {
    background-color: white;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    position: sticky;
    width: 100%;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo i {
    color: var(--primary);
    font-size: 24px;
}

.logo span {
    font-size: 22px;
    font-weight: 600;
    color: var(--dark);
}

.nav-menu {
    display: flex;
    gap: 25px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    color: var(--dark);
    background: none;
    border: none;
    cursor: pointer;
}

/* Hero Section */
.hero,
.page-hero {
    background: linear-gradient(135deg, #5271ff 0%, #5e81ff 100%);
    color: white;
    padding: 140px 0 90px;
    border-radius: 0 0 20px 20px;
    position: relative;
    overflow: hidden;
}

.page-hero {
    padding: 80px 0;
    margin-bottom: 60px;
}

.hero::before,
.page-hero::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -100px;
    right: -100px;
}

.hero::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    bottom: -50px;
    left: -50px;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 1;
    position: relative;
}

.hero h1,
.page-hero h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero p,
.page-hero p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Search Box Section */
.search-section {
    position: relative;
    margin-bottom: 80px;
}

.search-wrapper {
    position: relative;
    margin-top: -70px;
}

.search-box {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    padding: 30px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.search-box h2 {
    color: #2d3250;
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 25px;
}

.search-input-wrapper {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    height: 60px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

.prefix {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    color: #333;
    font-weight: bold;
    font-size: 18px;
    width: 60px;
    border-right: 1px solid #e0e0e0;
}

.phone-input {
    flex: 1;
    height: 100%;
    border: none;
    padding: 0 20px;
    font-size: 16px;
    outline: none;
}

.search-button {
    background: #5271ff;
    color: white;
    border: none;
    padding: 0 30px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.search-button:hover {
    background: #4060ff;
}

/* Recent Section */
.recent-section {
    padding: 60px 0 40px;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 32px;
    color: var(--dark);
    margin-bottom: 15px;
}

.section-title p {
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    margin-bottom: 30px;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.card-header {
    background-color: white;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 20px 25px;
    font-weight: 600;
    color: var(--dark);
    font-size: 18px;
    border-radius: 15px 15px 0 0 !important;
}

.card-body {
    padding: 25px;
}

.list-group-item {
    padding: 15px;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: background-color 0.3s;
}

.list-group-item:last-child {
    border-bottom: none;
}

.list-group-item:hover {
    background-color: rgba(82, 113, 255, 0.02);
}

.list-group-item a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.list-group-item a:hover {
    color: var(--dark);
}

/* Features Section */
.features {
    padding: 60px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(82, 113, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon i {
    font-size: 24px;
    color: var(--primary);
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--dark);
}

.feature-card p {
    color: var(--gray);
    font-size: 15px;
}

/* Footer */
footer {
    background: var(--dark);
    color: white;
    padding: 60px 0 20px;
    margin-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    color: white;
    font-weight: 600;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background: var(--primary);
    left: 0;
    bottom: 0;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
    transition: transform 0.3s;
}

.footer-links li:hover {
    transform: translateX(5px);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
}

.footer-links a:hover {
    color: white;
}

.footer-links a i {
    margin-right: 8px;
    width: 20px;
    text-align: center;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 18px;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

/* Hakkımızda Sayfası Stilleri */
.about-section {
    padding-bottom: 80px;
}

.about-card {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-icon {
    width: 100px;
    height: 100px;
    background: rgba(82, 113, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.about-icon i {
    font-size: 40px;
    color: var(--primary);
}

.feature-boxes {
    margin-top: 40px;
}

.feature-box {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-box .feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(82, 113, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-box .feature-icon i {
    font-size: 24px;
    color: var(--primary);
}

.feature-box h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--dark);
}

.stat-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stat-card .stat-icon {
    width: 70px;
    height: 70px;
    background: rgba(82, 113, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.stat-card .stat-icon i {
    font-size: 28px;
    color: var(--primary);
}

.stat-card h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
}

.stat-card p {
    color: var(--gray);
    margin-bottom: 0;
    font-size: 17px;
}

.alert-card {
    display: flex;
    align-items: center;
    background: rgba(82, 113, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    border-left: 4px solid var(--primary);
}

.alert-icon {
    min-width: 60px;
    height: 60px;
    background: rgba(82, 113, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.alert-icon i {
    font-size: 24px;
    color: var(--primary);
}

.alert-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--dark);
}

.alert-content p {
    color: var(--gray);
    margin-bottom: 0;
}

.alert-content a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.alert-content a:hover {
    text-decoration: underline;
}

/* İletişim Sayfası Stilleri */
.contact-section {
    padding-bottom: 80px;
}

.contact-wrapper {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.info-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 25px;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(82, 113, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.info-icon i {
    font-size: 22px;
    color: var(--primary);
}

.info-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--dark);
}

.info-card p {
    color: var(--gray);
    margin-bottom: 0;
    font-size: 15px;
}

.contact-methods {
    padding: 25px;
    background: rgba(82, 113, 255, 0.05);
    border-radius: 15px;
}

.contact-methods h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--dark);
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-list li:last-child {
    margin-bottom: 0;
}

.contact-list li i {
    width: 40px;
    height: 40px;
    background: rgba(82, 113, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--primary);
}

.contact-list li span {
    color: var(--gray);
}

.contact-form-wrapper {
    height: 100%;
    padding: 10px 0;
}

.contact-form-wrapper h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: var(--dark);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--dark);
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(82, 113, 255, 0.1);
    outline: none;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.form-submit {
    text-align: right;
}

.submit-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    background: #4060ff;
    transform: translateY(-2px);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Kullanıcı Sözleşmesi Sayfası Stilleri */
.terms-section {
    padding-bottom: 80px;
}

.terms-wrapper {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.terms-intro {
    display: flex;
    background: rgba(82, 113, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
    border-left: 4px solid var(--primary);
}

.terms-articles {
    margin-bottom: 40px;
}

.terms-article {
    display: flex;
    margin-bottom: 40px;
}

.terms-article:last-child {
    margin-bottom: 0;
}

.article-number {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    opacity: 0.7;
    margin-right: 25px;
    min-width: 50px;
}

.article-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark);
}

.article-content p {
    color: var(--gray);
    line-height: 1.7;
}

.terms-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.terms-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: var(--gray);
}

.terms-list li:last-child {
    margin-bottom: 0;
}

.terms-list li i {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    margin-top: 3px;
    font-size: 12px;
}

.terms-list li.allowed i {
    background-color: rgba(3, 201, 136, 0.1);
    color: var(--secondary);
}

.terms-list li.prohibited i {
    background-color: rgba(255, 107, 107, 0.1);
    color: var(--danger);
}

.terms-list li i.fas {
    background-color: rgba(82, 113, 255, 0.1);
    color: var(--primary);
}

.terms-list li span {
    flex: 1;
}

.terms-list li a {
    color: var(--primary);
    text-decoration: none;
}

.terms-list li a:hover {
    text-decoration: underline;
}

.terms-footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.update-info {
    color: var(--gray);
    font-size: 14px;
    display: flex;
    align-items: center;
}

.update-info i {
    margin-right: 8px;
    font-size: 16px;
    opacity: 0.7;
}

/* Yardımcı Sınıflar */
.text-success {
    color: var(--secondary) !important;
}

.text-danger {
    color: var(--danger) !important;
}

.text-warning {
    color: var(--warning) !important;
}

.text-primary {
    color: var(--primary) !important;
}

/* Responsive Düzenlemeler */
@media (max-width: 992px) {

    .terms-wrapper,
    .contact-wrapper,
    .about-card {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .header-container {
        height: 60px;
    }

    .nav-menu {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        padding: 20px;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.4s ease-in-out;
        z-index: 1000;
    }

    .nav-menu.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .nav-menu a {
        display: block;
        padding: 12px 0;
        border-bottom: 1px solid #f1f1f1;
    }

    .nav-menu a.active::after {
        display: none;
    }

    .nav-menu a.active {
        padding-left: 10px;
        border-left: 3px solid var(--primary);
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero h1,
    .page-hero h1 {
        font-size: 32px;
    }

    .hero p,
    .page-hero p {
        font-size: 16px;
    }

    .page-hero {
        padding: 60px 0;
        margin-bottom: 40px;
    }

    .search-box {
        padding: 20px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .terms-wrapper,
    .contact-wrapper,
    .about-card {
        padding: 25px;
    }

    .terms-intro,
    .contact-intro {
        flex-direction: column;
        padding: 20px;
    }

    .intro-icon {
        margin-bottom: 15px;
        margin-right: 0;
    }

    .terms-article {
        flex-direction: column;
    }

    .article-number {
        margin-bottom: 10px;
        margin-right: 0;
    }

    .form-submit {
        text-align: center;
    }

    .submit-btn {
        width: 100%;
    }
}

@media (max-width: 576px) {

    .hero,
    .page-hero {
        padding-left: 15px;
        padding-right: 15px;
    }

    .search-input-wrapper {
        height: 50px;
    }

    .prefix {
        width: 40px;
        font-size: 16px;
    }

    .phone-input {
        padding: 0 10px;
        font-size: 14px;
    }

    .search-button {
        padding: 0 15px;
        font-size: 14px;
    }
}

/* Sorumluluk Reddi ve Gizlilik Politikası Sayfaları Ortak Stiller */
.disclaimer-section,
.privacy-section {
    padding-bottom: 80px;
}

.disclaimer-wrapper,
.privacy-wrapper {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.disclaimer-intro,
.privacy-intro {
    display: flex;
    background: rgba(82, 113, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
    border-left: 4px solid var(--primary);
}

.intro-icon {
    min-width: 60px;
    height: 60px;
    background: rgba(82, 113, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
}

.intro-icon i {
    font-size: 26px;
    color: var(--primary);
}

.intro-content h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--dark);
}

.intro-content p {
    color: var(--gray);
    margin-bottom: 0;
    font-size: 16px;
}

.disclaimer-lead,
.privacy-lead {
    margin-bottom: 30px;
}

.disclaimer-lead p,
.privacy-lead p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--dark);
}

/* Sorumluluk Reddi Maddeleri */
.disclaimer-items {
    margin-bottom: 40px;
}

.disclaimer-item {
    display: flex;
    margin-bottom: 30px;
    background: #f8f9fa;
    border-radius: 15px;
    padding: 25px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.disclaimer-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.disclaimer-item:last-child {
    margin-bottom: 0;
}

.item-icon {
    min-width: 50px;
    height: 50px;
    background: rgba(82, 113, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.item-icon i {
    font-size: 22px;
    color: var(--primary);
}

.item-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--dark);
}

.item-content p {
    color: var(--gray);
    margin-bottom: 0;
}

/* Gizlilik Politikası Maddeleri */
.privacy-articles {
    margin-bottom: 40px;
}

.privacy-article {
    display: flex;
    margin-bottom: 40px;
}

.privacy-article:last-child {
    margin-bottom: 0;
}

.article-number {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    opacity: 0.7;
    margin-right: 25px;
    min-width: 50px;
}

.article-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark);
}

.article-content p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 15px;
}

.article-content p:last-child {
    margin-bottom: 0;
}

.privacy-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.privacy-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: var(--gray);
}

.privacy-list li:last-child {
    margin-bottom: 0;
}

.privacy-list li i {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    margin-top: 3px;
    font-size: 12px;
    background: rgba(82, 113, 255, 0.1);
    color: var(--primary);
}

.privacy-list li span {
    flex: 1;
}

/* İletişim Kartı */
.contact-info-card {
    display: flex;
    align-items: center;
    background: rgba(3, 201, 136, 0.05);
    border-radius: 15px;
    padding: 25px;
    border-left: 4px solid var(--secondary);
    margin-bottom: 30px;
}

.info-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--dark);
}

.info-content p {
    color: var(--gray);
    margin-bottom: 0;
}

.info-content a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.info-content a:hover {
    text-decoration: underline;
}

/* Footer */
.disclaimer-footer,
.privacy-footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.update-info {
    color: var(--gray);
    font-size: 14px;
    display: flex;
    align-items: center;
}

.update-info i {
    margin-right: 8px;
    font-size: 16px;
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 992px) {

    .disclaimer-wrapper,
    .privacy-wrapper {
        padding: 30px;
    }
}

@media (max-width: 768px) {

    .disclaimer-intro,
    .privacy-intro,
    .disclaimer-item,
    .contact-info-card {
        flex-direction: column;
    }

    .intro-icon,
    .item-icon {
        margin-bottom: 15px;
        margin-right: 0;
    }

    .privacy-article {
        flex-direction: column;
    }

    .article-number {
        margin-bottom: 10px;
        margin-right: 0;
    }

    .disclaimer-wrapper,
    .privacy-wrapper {
        padding: 25px;
    }
}

@media (max-width: 576px) {
    .disclaimer-item {
        padding: 20px;
    }
}

/* Profil Sayfası Stilleri */
.profile-section {
    padding-bottom: 80px;
}

.badge-wrapper {
    margin-top: 15px;
    display: flex;
    justify-content: center;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
}

.status-success {
    background-color: rgba(3, 201, 136, 0.1);
    color: var(--secondary);
}

.status-danger {
    background-color: rgba(255, 107, 107, 0.1);
    color: var(--danger);
}

.status-warning {
    background-color: rgba(255, 209, 102, 0.1);
    color: var(--warning);
}

.number-card,
.comment-card,
.other-comments-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    overflow: hidden;
}

.number-card .card-header,
.comment-card .card-header,
.other-comments-card .card-header {
    background-color: white;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 20px 25px;
}

.number-card .card-header h2,
.comment-card .card-header h2,
.other-comments-card .card-header h2 {
    font-size: 20px;
    margin: 0;
    font-weight: 600;
    color: var(--dark);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.number-card .card-body,
.comment-card .card-body,
.other-comments-card .card-body {
    padding: 25px;
}

.number-title {
    text-align: center;
    margin-bottom: 25px;
    font-size: 22px;
    font-weight: 600;
}

.number-title a {
    color: var(--dark);
    text-decoration: none;
    transition: color 0.3s;
}

.number-title a:hover {
    color: var(--primary);
}

.rating-bar {
    margin-bottom: 25px;
}

.rating-progress {
    height: 25px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.progress-segment {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 13px;
    font-weight: 600;
    transition: width 0.5s;
}

.progress-segment.safe {
    background-color: var(--secondary);
}

.progress-segment.spam {
    background-color: var(--danger);
}

.progress-segment.suspicious {
    background-color: var(--warning);
}

.no-votes {
    text-align: center;
    padding: 8px;
    background: #f8f9fa;
    border-radius: 12px;
    color: var(--gray);
    font-size: 14px;
}

.rating-stats {
    margin-bottom: 25px;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.stat-label {
    display: flex;
    align-items: center;
    gap: 10px;
}

.safe-icon {
    color: var(--secondary);
}

.spam-icon {
    color: var(--danger);
}

.suspicious-icon {
    color: var(--warning);
}

.stat-value {
    font-weight: 600;
    font-size: 18px;
    color: var(--dark);
}

.number-meta {
    margin-top: 25px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray);
    font-size: 14px;
}

.meta-item i {
    color: var(--primary);
    opacity: 0.7;
}

.meta-item strong {
    color: var(--dark);
}

.comment-badge {
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.badge-safe {
    background-color: rgba(3, 201, 136, 0.1);
    color: var(--secondary);
}

.badge-spam {
    background-color: rgba(255, 107, 107, 0.1);
    color: var(--danger);
}

.badge-suspicious {
    background-color: rgba(255, 209, 102, 0.1);
    color: var(--warning);
}

.comment-content {
    margin-bottom: 25px;
}

.comment-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--dark);
    margin: 0;
}

.comment-meta {
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray);
    font-size: 14px;
}

.comment-meta i {
    color: var(--primary);
    opacity: 0.7;
}

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.comment-item {
    position: relative;
    padding: 20px;
    border-radius: 12px;
    background-color: #f8f9fa;
    transition: transform 0.3s, box-shadow 0.3s;
    margin-bottom: 20px;
}

.comment-item:last-child {
    margin-bottom: 0;
}

.comment-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Durum rozeti - sağ üst köşeye sabitleme */
.item-status {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    z-index: 2;
}

.status-safe {
    background: rgba(3, 201, 136, 0.8);
    color: white;
}

.status-spam {
    background: rgba(255, 107, 107, 0.8);
    color: white;
}

.status-suspicious {
    background: rgba(255, 209, 102, 0.8);
    color: var(--dark);
}

/* Kullanıcı adı - her zaman görünür */
.item-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-right: 0;
    width: 100%;
}

.author-name {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 16px;
}

.author-name:hover {
    color: var(--secondary);
}

.author-name i {
    font-size: 12px;
    margin-right: 5px;
}

/* Yorum metni */
.comment-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--dark);
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding-bottom: 15px;
}

/* Tarih bilgisi */
.comment-date {
    color: var(--gray);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.comment-date i {
    color: var(--primary);
    opacity: 0.7;
}

@media (max-width: 576px) {
    .item-status {
        top: 10px;
        right: 10px;
        padding: 3px 10px;
        font-size: 12px;
    }
    
    .item-author {
        padding-right: 70px;
    }
    
    .author-name {
        font-size: 15px;
    }
}

/* Son Yorumlar - Zarif Ayırıcı Tasarım */
.recent-comments {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 0;
}

.comment-card {
    text-decoration: none;
    position: relative;
    transition: all 0.3s;
    margin-bottom: 20px;
    padding: 15px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.comment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.comment-card::after {
    content: '';
    position: absolute;
    height: 3px;
    left: 5%;
    right: 5%;
    bottom: -10px;
    background: linear-gradient(to right, transparent, rgba(82, 113, 255, 0.15), transparent);
    border-radius: 3px;
}

.comment-card:last-child::after {
    display: none;
}

.commenter-name {
    position: absolute;
    left: 20px;
    top: -12px;
    background: var(--primary);
    color: white;
    font-size: 13px;
    font-weight: 500;
    padding: 4px 15px;
    border-radius: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 5px;
}

.commenter-name i {
    font-size: 12px;
}

.comment-status-ribbon {
    position: absolute;
    top: 15px;
    right: 0;
    padding: 8px 15px 8px 20px;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 20px 0 0 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    z-index: 2;
    transition: transform 0.3s;
}

.comment-status-ribbon:hover {
    transform: translateX(-5px);
}

.comment-status-ribbon i {
    font-size: 16px;
}

.status-safe {
    background: linear-gradient(to right, #03c988, #00a86b);
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.status-spam {
    background: linear-gradient(to right, #ff6b6b, #e64c4c);
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.status-suspicious {
    background: linear-gradient(to right, #ffd166, #ffb224);
    color: #333;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.2);
}

.comment-header {
    padding: 15px 15px 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.phone-number {
    font-weight: 600;
    color: var(--dark);
    font-size: 16px;
    display: block;
}

.comment-body {
    padding: 10px 15px;
}

.comment-body p {
    margin: 0;
    color: var(--gray);
    font-size: 14px;
    line-height: 1.5;
}

.comment-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: rgba(0, 0, 0, 0.02);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.comment-author {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 500;
}

.comment-author i {
    font-size: 12px;
    opacity: 0.8;
}

.comment-date {
    color: var(--gray);
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.comment-date i {
    opacity: 0.7;
}

/* Scrollbar stilleri */
::-webkit-scrollbar {
    width: 6px;
    background-color: #f5f5f5;
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #ddd;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #ccc;
}

/* Mobil duyarlılık */
@media (max-width: 992px) {
    .recent-comments {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }

    .comment-status-ribbon {
        top: 12px;
        padding: 6px 12px 6px 15px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .recent-comments {
        grid-template-columns: 1fr;
    }
}

/* Son Yorumlar Kartı İçin Düzeltmeler */
.commenter-info {
    margin-top: 8px;
}

.commenter-badge {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(82, 113, 255, 0.08);
    border-radius: 20px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 500;
}

.commenter-badge i {
    margin-right: 5px;
    opacity: 0.8;
}

/* Mobil Uyumluluk İçin Düzeltmeler */
@media (max-width: 768px) {
    footer {
        padding: 40px 0 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .social-links {
        justify-content: center;
    }

    .footer-column h3 {
        text-align: center;
    }

    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-column p {
        text-align: center;
    }

    .footer-links li {
        text-align: center;
    }

    .footer-links a {
        justify-content: center;
    }
}

/* Kullanıcı bağlantısı için stil - diğer stilleri koruyarak */
.user-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary);
    font-size: 14px;
    text-decoration: none;
    gap: 5px;
    transition: color 0.3s;
}

.user-link:hover {
    color: var(--secondary);
    text-decoration: underline;
}

.user-link i {
    font-size: 12px;
    opacity: 0.8;
}

/* Ana yorum için statü rozeti - sağ üst köşeye sabitlenmiş */
.main-status {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

/* Gradient arka planları */
.main-status.status-safe {
    background: linear-gradient(to right, #03c988, #00a86b);
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.main-status.status-spam {
    background: linear-gradient(to right, #ff6b6b, #e64c4c);
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.main-status.status-suspicious {
    background: linear-gradient(to right, #ffd166, #ffb224);
    color: #333;
    text-shadow: 0 1px 2px rgba(255,255,255,0.2);
}

.main-status i {
    font-size: 16px;
}

/* Ana yorum kartının position'ını relative yapalım ki statü rozeti doğru konumlandırılsın */
.comment-card .card-body {
    padding: 25px;
    position: relative;
}

/* Mobil uyumluluk */
@media (max-width: 576px) {
    .main-status {
        top: 15px;
        right: 15px;
        padding: 6px 12px;
        font-size: 13px;
    }
}

/* Durum rozetini satır içi olarak gösterme */
.item-status-inline {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* Durum rozeti ikonunun boyutunu küçültme */
.item-status-inline i {
    font-size: 12px;
}

/* Durum rozetleri için renkler */
.item-status-inline.status-safe {
    background: rgba(3, 201, 136, 0.8);
    color: white;
}

.item-status-inline.status-spam {
    background: rgba(255, 107, 107, 0.8);
    color: white;
}

.item-status-inline.status-suspicious {
    background: rgba(255, 209, 102, 0.8);
    color: var(--dark);
}

/* Eski durum rozetini gizleme */
.item-status {
    display: none;
}

/* Profil sayfası - diğer yorumlar bölümü kullanıcı ikonu düzeltmesi */
.item-author .author-name i {
    font-size: 12px; /* İkon boyutunu küçülttüm */
    color: var(--primary);
    opacity: 0.8;
    margin-right: 5px;
}

/* Genel düzen düzeltmeleri */
.item-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    width: 100%;
}

.author-name {
    display: inline-flex;
    align-items: center;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 15px;
}

.author-name:hover {
    color: var(--secondary);
}

/* Son Aranan Numaralar - İyileştirilmiş Yeni Tasarım */
.recent-numbers {
    padding: 0;
}

.number-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    text-decoration: none;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.number-list-item:last-child {
    border-bottom: none;
}

.number-list-item:hover {
    background-color: rgba(82, 113, 255, 0.05);
    transform: translateX(5px);
}

.number-list-left {
    display: flex;
    align-items: center;
}

.number-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.number-icon i {
    font-size: 15px;
}

.hot-number {
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
    box-shadow: 0 3px 8px rgba(255, 107, 107, 0.2);
}

.hot-number i {
    color: white;
}

.warm-number {
    background: linear-gradient(45deg, #ffa502, #ffcc80);
    box-shadow: 0 3px 8px rgba(255, 165, 2, 0.2);
}

.warm-number i {
    color: white;
}

.active-number {
    background: linear-gradient(45deg, #5271ff, #91a5ff);
    box-shadow: 0 3px 8px rgba(82, 113, 255, 0.2);
}

.active-number i {
    color: white;
}

.new-number {
    background: #f0f2f5;
}

.new-number i {
    color: #adb5bd;
}

.number-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
}

.view-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 30px;
    font-weight: 500;
    white-space: nowrap;
}

.view-badge span {
    font-weight: 700;
}

.badge-hot {
    background-color: rgba(255, 107, 107, 0.1);
    color: #ff6b6b;
}

.badge-warm {
    background-color: rgba(255, 165, 2, 0.1);
    color: #ffa502;
}

.badge-active {
    background-color: rgba(82, 113, 255, 0.1);
    color: #5271ff;
}

.badge-new {
    background-color: rgba(0, 0, 0, 0.05);
    color: #adb5bd;
}

@media (max-width: 576px) {
    .number-list-item {
        padding: 10px 12px;
    }
    
    .number-icon {
        width: 35px;
        height: 35px;
        margin-right: 10px;
    }
    
    .number-text {
        font-size: 14px;
    }
    
    .view-badge {
        font-size: 11px;
        padding: 3px 8px;
    }
}