/* Referanslar Sayfası Stilleri */
.references-page {
    padding: 40px 0 80px;
    background: #f8f9fa;
    min-height: 60vh;
}

.references-page .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Breadcrumb */
.references-page .breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 14px;
}

.references-page .breadcrumb a {
    color: #666;
    text-decoration: none;
}

.references-page .breadcrumb a:hover {
    color: #f35b23;
}

.references-page .breadcrumb .separator {
    color: #ccc;
    font-size: 10px;
}

.references-page .breadcrumb .current {
    color: #333;
    font-weight: 500;
}

/* Page Header */
.references-page .page-header {
    text-align: center;
    margin-bottom: 50px;
}

.references-page .page-header h1 {
    font-size: 36px;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.references-page .page-subtitle {
    font-size: 18px;
    color: #666;
}

/* References Grid */
.references-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

/* Reference Card */
.reference-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.reference-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.reference-logo {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
}

.reference-logo img {
    max-width: 100%;
    max-height: 100px;
    object-fit: contain;
}

.reference-logo.no-logo {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.reference-logo.no-logo i {
    font-size: 48px;
    opacity: 0.8;
}

.reference-info {
    padding: 20px;
}

.company-name {
    font-size: 18px;
    color: #1a1a2e;
    margin-bottom: 5px;
    font-weight: 600;
}

.company-sector {
    display: inline-block;
    background: #e8f4fd;
    color: #1976d2;
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 12px;
    margin-bottom: 10px;
}

.company-description {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.empty-state i {
    font-size: 64px;
    color: #ddd;
    margin-bottom: 20px;
}

.empty-state h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

.empty-state p {
    color: #666;
}

/* CTA Section */
.references-cta {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
    padding: 50px;
    border-radius: 16px;
    text-align: center;
    color: white;
}

.references-cta h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.references-cta p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 25px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
}

.cta-buttons .btn-primary {
    background: #f35b23;
    color: white;
}

.cta-buttons .btn-primary:hover {
    background: #e04a15;
}

.cta-buttons .btn-whatsapp {
    background: #25D366;
    color: white;
}

.cta-buttons .btn-whatsapp:hover {
    background: #20ba5a;
}

/* Responsive */
@media (max-width: 768px) {
    .references-page {
        padding: 30px 0 60px;
    }

    .references-page .page-header h1 {
        font-size: 28px;
    }

    .references-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }

    .references-cta {
        padding: 30px 20px;
    }

    .references-cta h2 {
        font-size: 22px;
    }

    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}
