/* Fason Modülü CSS - Mobil Uygulama Entegreli Tasarım */

.fason-container {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Fason Başlığı */
.fason-header {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
    color: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

.fason-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 8px;
}

.fason-title i {
    font-size: 28px;
}

.fason-title h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.fason-subtitle {
    font-size: 16px;
    opacity: 0.9;
    margin: 0;
}

/* Firma Kartları Grid - Mobil Uygulama benzeri tasarım */
.company-cards-grid {
    margin-bottom: 30px;
}

.company-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.company-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.company-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    border-color: #4A90E2;
}

.company-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.company-name {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.company-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.company-info {
    margin-bottom: 15px;
}

.company-phone,
.company-address {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
    font-size: 14px;
    color: #666;
}

.company-phone i,
.company-address i {
    color: #4A90E2;
    width: 16px;
}

.company-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.company-stat {
    text-align: center;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
}

.company-stat-value {
    font-size: 20px;
    font-weight: 700;
    color: #4A90E2;
    margin-bottom: 2px;
}

.company-stat-label {
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.company-actions {
    display: flex;
    gap: 8px;
}

.company-action-btn {
    flex: 1;
    padding: 8px 12px;
    border: none;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: #4A90E2;
    color: white;
}

.btn-primary:hover {
    background: #357ABD;
}

.btn-secondary {
    background: #e9ecef;
    color: #6c757d;
}

.btn-secondary:hover {
    background: #dee2e6;
    color: #495057;
}

.btn-success {
    background: #28a745;
    color: white;
}

.btn-success:hover {
    background: #218838;
}

/* Yeni Firma Kartı */
.add-company-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px dashed #dee2e6;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    min-height: 200px;
    transition: all 0.3s ease;
}

.add-company-card:hover {
    border-color: #4A90E2;
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f3ff 100%);
    transform: translateY(-2px);
}

.add-company-icon {
    width: 60px;
    height: 60px;
    background: #4A90E2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.add-company-card:hover .add-company-icon {
    transform: scale(1.1);
    background: #357ABD;
}

.add-company-text {
    font-size: 16px;
    font-weight: 600;
    color: #4A90E2;
    margin: 0;
}

/* İstatistikler */
.fason-statistics {
    margin-bottom: 30px;
}

.statistics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.stat-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.stat-card.total {
    border-left: 4px solid #4A90E2;
}

.stat-card.active {
    border-left: 4px solid #28a745;
}

.stat-card.pending {
    border-left: 4px solid #ffc107;
}

.stat-card.completed {
    border-left: 4px solid #17a2b8;
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 20px;
    color: white;
}

.stat-card.total .stat-icon {
    background: linear-gradient(135deg, #4A90E2, #357ABD);
}

.stat-card.active .stat-icon {
    background: linear-gradient(135deg, #28a745, #1e7e34);
}

.stat-card.pending .stat-icon {
    background: linear-gradient(135deg, #ffc107, #e0a800);
}

.stat-card.completed .stat-icon {
    background: linear-gradient(135deg, #17a2b8, #138496);
}

.stat-value {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hızlı İşlemler */
.quick-actions {
    margin-bottom: 30px;
}

.quick-actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.quick-action-btn {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #2c3e50;
}

.quick-action-btn:hover {
    border-color: #4A90E2;
    background: #f0f7ff;
    transform: translateY(-1px);
}

.quick-action-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
}

.quick-action-text {
    font-weight: 600;
    font-size: 14px;
}

/* Mobil App Benzeri Empty State */
.fason-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    min-height: 400px;
    background: white;
    border-radius: 12px;
    margin: 20px 0;
}

.fason-empty-state .empty-icon {
    width: 80px;
    height: 80px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.fason-empty-state .empty-icon i {
    font-size: 36px;
    color: #6c757d;
}

.fason-empty-state h3 {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.fason-empty-state p {
    font-size: 16px;
    color: #6c757d;
    line-height: 1.5;
    margin-bottom: 40px;
}

.empty-state-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.fason-add-btn {
    background: linear-gradient(135deg, #ff9500 0%, #ff8800 100%);
    color: white;
    border: none;
    border-radius: 25px;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(255, 149, 0, 0.3);
}

.fason-add-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 149, 0, 0.4);
    background: linear-gradient(135deg, #ff8800 0%, #ff7700 100%);
}

.daily-summary-btn {
    background: linear-gradient(135deg, #007aff 0%, #0056cc 100%);
    color: white;
    border: none;
    border-radius: 25px;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.3);
}

.daily-summary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 122, 255, 0.4);
    background: linear-gradient(135deg, #0056cc 0%, #0044aa 100%);
}

.reports-btn {
    background: linear-gradient(135deg, #673AB7 0%, #512DA8 100%);
    color: white;
    border: none;
    border-radius: 25px;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(103, 58, 183, 0.3);
}

.reports-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(103, 58, 183, 0.4);
    background: linear-gradient(135deg, #512DA8 0%, #4527A0 100%);
}

/* Genel Boş Durum */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #6c757d;
}

.empty-state i {
    font-size: 64px;
    margin-bottom: 20px;
    color: #dee2e6;
}

.empty-state h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #495057;
}

.empty-state p {
    font-size: 16px;
    margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .fason-container {
        padding: 15px;
    }

    .company-cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .statistics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .quick-actions-grid {
        grid-template-columns: 1fr;
    }

    .fason-header {
        padding: 15px;
    }

    .fason-title h2 {
        font-size: 20px;
    }

    .fason-subtitle {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .statistics-grid {
        grid-template-columns: 1fr;
    }

    .company-stats {
        grid-template-columns: 1fr;
    }

    .company-actions {
        flex-direction: column;
    }

    .company-action-btn {
        padding: 12px;
        font-size: 14px;
    }

    .empty-state-buttons {
        flex-direction: column;
        width: 100%;
    }

    .fason-add-btn,
    .daily-summary-btn {
        width: 100%;
        justify-content: center;
    }

    .fason-empty-state {
        padding: 60px 15px;
        min-height: 350px;
    }
}

/* Animasyonlar */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.company-card {
    animation: fadeInUp 0.5s ease;
}

.company-card:nth-child(2) {
    animation-delay: 0.1s;
}

.company-card:nth-child(3) {
    animation-delay: 0.2s;
}

.company-card:nth-child(4) {
    animation-delay: 0.3s;
}

/* Loading Animation */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #4A90E2;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* =================================== */
/* FASONLARIM TAB STYLES */
/* =================================== */

.fasonlarim-container {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.fasonlarim-header {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background: linear-gradient(135deg, #2C5F4A 0%, #1e3f32 100%);
    color: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(44, 95, 74, 0.3);
}

.fasonlarim-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 8px;
}

.fasonlarim-title i {
    font-size: 28px;
}

.fasonlarim-title h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.fasonlarim-subtitle {
    font-size: 16px;
    opacity: 0.9;
    margin: 0;
}

.fasonlarim-stats {
    margin-bottom: 30px;
}

.fasonlarim-companies {
    margin-bottom: 30px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.fasonlarim-companies table {
    min-width: 800px;
}

.fasonlarim-recent-orders {
    margin-bottom: 20px;
}

/* =================================== */
/* FASON ANA BUTON STYLES (Mobil App) */
/* =================================== */

.fason-main-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 30px 0;
    flex-wrap: wrap;
}

.fason-add-btn,
.daily-summary-btn {
    flex: 1;
    min-width: 200px;
    max-width: 300px;
    padding: 20px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.fason-add-btn {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.fason-add-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.daily-summary-btn {
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
}

.daily-summary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.4);
}

.fason-info-text {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    margin: 20px 0;
    color: #6c757d;
}

.fason-info-text i {
    color: #007bff;
    margin-right: 8px;
}

/* Fason Companies Table Styles */
.companies-table {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-top: 20px;
}

.table-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 120px;
    background: linear-gradient(135deg, #2C5F4A 0%, #1e3f32 100%);
    color: white;
    font-weight: 600;
    font-size: 14px;
}

.header-item {
    padding: 16px 20px;
    display: flex;
    align-items: center;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.header-item:last-child {
    border-right: none;
    justify-content: center;
}

.table-body {
    max-height: 400px;
    overflow-y: auto;
}

.table-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 120px;
    border-bottom: 2px solid #e9ecef;
    transition: all 0.3s ease;
    cursor: pointer;
    background: white;
}

.table-row:hover {
    background-color: #f8f9fa;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-bottom-color: #dee2e6;
}

.table-row:last-child {
    border-bottom: 2px solid #dee2e6;
}

.row-item {
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-right: 1px solid #f0f0f0;
    font-size: 14px;
}

.row-item:last-child {
    border-right: none;
    justify-content: center;
    gap: 8px;
}

.row-item i {
    color: #6c757d;
    font-size: 12px;
    width: 14px;
}

.company-name {
    font-weight: 600;
    color: #2C5F4A;
}

.company-name i {
    color: #2C5F4A;
}

.company-phone {
    color: #495057;
}

.company-code {
    font-family: 'Courier New', monospace;
    color: #6c757d;
    font-size: 13px;
}

.action-btn {
    background: none;
    border: 1px solid #dee2e6;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    font-size: 12px;
}

.edit-btn {
    color: #28a745;
    border-color: #28a745;
}

.edit-btn:hover {
    background-color: #28a745;
    color: white;
    transform: scale(1.05);
}

.delete-btn {
    color: #dc3545 !important;
    border-color: #dc3545 !important;
    background-color: transparent !important;
}

.delete-btn:hover {
    background-color: #dc3545 !important;
    color: white !important;
    transform: scale(1.05);
}

.order-btn {
    color: #007bff;
    border-color: #007bff;
}

.order-btn:hover {
    background-color: #007bff;
    color: white;
}

.no-companies {
    text-align: center;
    padding: 60px 20px;
    color: #6c757d;
}

.no-companies i {
    font-size: 48px;
    color: #dee2e6;
    margin-bottom: 16px;
}

.no-companies p {
    font-size: 18px;
    margin-bottom: 8px;
}

.no-companies small {
    font-size: 14px;
    color: #9aa0a6;
}

/* Section Header Update */
.section-header h3 {
    color: #2C5F4A;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-header h3 i {
    color: #2C5F4A;
}

/* Responsive Design */
@media (max-width: 768px) {

    .table-header,
    .table-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .header-item,
    .row-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        justify-content: flex-start;
    }

    .header-item:last-child,
    .row-item:last-child {
        border-bottom: none;
    }

    .company-actions {
        justify-content: center;
        padding-top: 12px;
    }
}

/* Company Detail Screen Styles */
.company-detail-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
}

.company-detail-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #2C5F4A 0%, #1e3f32 100%);
    color: white;
    border-radius: 15px;
}

.company-detail-header h2 {
    margin: 0 0 10px 0;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.company-detail-header .company-code {
    margin: 0;
    opacity: 0.9;
    font-size: 16px;
    font-family: 'Courier New', monospace;
}

.company-detail-info {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    font-weight: 600;
    color: #495057;
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-label i {
    color: #2C5F4A;
    width: 16px;
}

.info-value {
    color: #6c757d;
    font-size: 15px;
}

.company-detail-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.detail-action-btn {
    padding: 12px 24px;
    border-radius: 8px;
    border: 2px solid;
    background: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 120px;
    justify-content: center;
}

.detail-action-btn.edit-btn {
    color: #28a745;
    border-color: #28a745;
}

.detail-action-btn.edit-btn:hover {
    background-color: #28a745;
    color: white;
}

.detail-action-btn.delete-btn {
    color: #dc3545;
    border-color: #dc3545;
}

.detail-action-btn.delete-btn:hover {
    background-color: #dc3545;
    color: white;
}

.detail-action-btn.back-btn {
    color: #6c757d;
    border-color: #6c757d;
}

.detail-action-btn.back-btn:hover {
    background-color: #6c757d;
    color: white;
}

/* ============================================
   MOBİL APP BENZERİ FİRMA DETAY EKRANI
   Referans: fason_bilgi_ekrani.dart
   ============================================ */

.company-detail-screen {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #F8F9FA;
    min-height: 80vh;
}

/* Geri Butonu */
.company-detail-back {
    margin-bottom: 20px;
}

.back-button {
    background: white;
    border: 2px solid #2C3E50;
    color: #2C3E50;
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.back-button:hover {
    background-color: #2C3E50;
    color: white;
    transform: translateX(-5px);
}

/* Firma Bilgi Kartı - Mobil app benzeri */
.firma-bilgi-karti {
    background: white;
    border: 2px solid #3498db;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.15);
}

.firma-bilgi-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #ecf0f1;
}

.firma-bilgi-header i {
    font-size: 32px;
    color: #3498db;
}

.firma-bilgi-header h2 {
    margin: 0;
    font-size: 26px;
    font-weight: 700;
    color: #2C3E50;
}

.firma-bilgi-content {
    display: grid;
    gap: 15px;
}

.bilgi-row {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 15px;
    padding: 12px 0;
    align-items: center;
}

.bilgi-label {
    font-weight: 600;
    color: #34495e;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
}

.bilgi-label i {
    color: #3498db;
    width: 20px;
    font-size: 16px;
}

.bilgi-value {
    color: #7f8c8d;
    font-size: 15px;
    font-weight: 500;
}

/* 4 Aksiyon Kartı Grid - Mobil app 2x2 layout */
.fason-action-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.action-card {
    background: white;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.action-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Yeşil Kart - Ekle */
.action-card.green-card {
    border-color: #27ae60;
}

.action-card.green-card:hover {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
}

.action-card.green-card .action-card-icon {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
}

/* Mavi Kart - İçeridekiler */
.action-card.blue-card {
    border-color: #3498db;
}

.action-card.blue-card:hover {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

.action-card.blue-card .action-card-icon {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

/* Turuncu Kart - Ürünler ve Fiyat */
.action-card.orange-card {
    border-color: #e67e22;
}

.action-card.orange-card:hover {
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
}

.action-card.orange-card .action-card-icon {
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
}

/* Mor Kart - Gün Özeti */
.action-card.purple-card {
    border-color: #9b59b6;
}

.action-card.purple-card:hover {
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
}

.action-card.purple-card .action-card-icon {
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
}

.action-card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.action-card-icon i {
    font-size: 36px;
    color: white;
}

.action-card-content h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #2C3E50;
    transition: color 0.3s ease;
}

.action-card-content p {
    margin: 5px 0 0;
    font-size: 14px;
    color: #7f8c8d;
    transition: color 0.3s ease;
}

.action-card:hover .action-card-content h3,
.action-card:hover .action-card-content p {
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .fason-action-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .action-card {
        min-height: 150px;
        padding: 25px 15px;
    }

    .action-card-icon {
        width: 60px;
        height: 60px;
    }

    .action-card-icon i {
        font-size: 28px;
    }

    .action-card-content h3 {
        font-size: 18px;
    }

    .bilgi-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .company-detail-screen {
        padding: 15px;
    }
}