/* Yeni Hizmet Satın Alma Sayfası CSS */

/* Container Width Optimization */
.app-container {
    max-width: 1600px !important;
}

.container-xxl {
    max-width: 1600px !important;
}

/* Content Area Width */
.app-content {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
}

/* Grid Layout Optimization */
.category-navigation {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
    gap: 1.5rem;
}

/* Package Cards Grid */
.row.g-5.g-xl-8 {
    --bs-gutter-x: 2rem;
    --bs-gutter-y: 2rem;
    justify-content: center !important;
}

.col-xl-4 {
    flex: 0 0 auto;
    width: 31.333333% !important;
}

@media (min-width: 1400px) {
    .col-xl-4 {
        width: 30% !important;
    }
    
    .row.g-5.g-xl-8 {
        --bs-gutter-x: 2.5rem;
    }
}

@media (min-width: 1600px) {
    .col-xl-4 {
        width: 23% !important;
    }
    
    .col-xxl-3 {
        width: 23% !important;
    }
    
    .category-navigation {
        grid-template-columns: repeat(5, 1fr) !important;
    }
    
    .row.g-5.g-xl-8 {
        --bs-gutter-x: 1.5rem;
    }
}

@media (min-width: 1920px) {
    .app-container {
        max-width: 1800px !important;
    }
    
    .container-xxl {
        max-width: 1800px !important;
    }
    
    .col-xxl-3 {
        width: 22% !important;
    }
    
    .category-navigation {
        grid-template-columns: repeat(5, 1fr) !important;
        gap: 2rem;
    }
    
    .row.g-5.g-xl-8 {
        --bs-gutter-x: 2rem;
    }
    
    .app-content {
        padding-left: 3rem !important;
        padding-right: 3rem !important;
    }
}

/* Welcome Banner */
.welcome-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    border-radius: 24px;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
    margin-bottom: 3rem;
    color: white;
}

.welcome-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, transparent 50%, rgba(255,255,255,0.05) 100%);
    pointer-events: none;
}

.welcome-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.welcome-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffffff, #f8f9ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.welcome-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.welcome-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 0;
}

.welcome-features .feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.welcome-features .feature-item i {
    font-size: 1.1rem;
    opacity: 0.8;
}

.welcome-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.welcome-decoration {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    pointer-events: none;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.decoration-circle-1 {
    width: 120px;
    height: 120px;
    top: 20px;
    right: 100px;
    animation-delay: 0s;
}

.decoration-circle-2 {
    width: 80px;
    height: 80px;
    bottom: 30px;
    right: 200px;
    animation-delay: 2s;
}

.decoration-circle-3 {
    width: 60px;
    height: 60px;
    top: 50%;
    right: 50px;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Wide Screen Optimizations for Welcome Banner */
@media (min-width: 1600px) {
    .welcome-banner {
        padding: 5rem 3rem;
    }
    
    .welcome-title {
        font-size: 3.5rem;
    }
    
    .welcome-subtitle {
        font-size: 1.3rem;
    }
    
    .welcome-features {
        gap: 3rem;
    }
}

/* Category Navigation Responsive */
@media (max-width: 768px) {
    .category-nav-item {
        min-width: 280px;
        padding: 1.5rem;
    }
    
    .category-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-right: 1rem;
    }
    
    .category-info h4 {
        font-size: 1rem;
    }
    
    .category-info p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .category-nav-item {
        min-width: 250px;
        padding: 1.25rem;
    }
    
    .category-navigation {
        padding: 0.25rem;
    }
}

@media (min-width: 1920px) {
    .welcome-banner {
        padding: 6rem 4rem;
    }
    
    .welcome-title {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    .welcome-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .welcome-title {
        font-size: 2rem;
    }
    
    .welcome-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .welcome-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .welcome-actions .btn {
        width: 100%;
    }
}

/* Category Navigation */
.category-nav-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.25);
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.category-nav-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, transparent 50%, rgba(255,255,255,0.05) 100%);
    pointer-events: none;
}

.category-navigation {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 0.5rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
    cursor: grab;
    user-select: none;
}

.category-navigation::-webkit-scrollbar {
    height: 8px;
}

.category-navigation::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.category-navigation::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    transition: background 0.3s ease;
}

.category-navigation::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

.category-nav-item {
    display: flex;
    align-items: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
    width: 350px !important;
    min-width: 350px !important;
    max-width: 350px !important;
    flex-shrink: 0;
    flex-grow: 0;
    white-space: nowrap;
}

.category-nav-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.6s ease;
}

.category-nav-item:hover::before {
    left: 100%;
}

.category-nav-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.category-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.category-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.2) 0%, transparent 50%, rgba(255,255,255,0.1) 100%);
    pointer-events: none;
}

.category-nav-item:hover .category-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.category-icon.primary { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.category-icon.warning { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
.category-icon.success { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }
.category-icon.info { background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%); }
.category-icon.danger { background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%); }

.category-info {
    flex: 1;
    min-width: 0;
}

.category-info h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
    white-space: normal;
    word-wrap: break-word;
}

.category-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
    font-size: 0.9rem;
    white-space: normal;
    word-wrap: break-word;
}

.category-arrow {
    margin-left: auto;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.category-nav-item:hover .category-arrow {
    transform: translateX(5px);
}

/* Category Headers - Hidden */
.category-header {
    display: none;
}

.category-title-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.category-title h2 {
    font-weight: 700;
    color: var(--bs-gray-900);
}

.category-stats .badge {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Package Cards - Modern Glassmorphism Design */
.package-card {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 32px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08), 0 8px 25px rgba(0, 0, 0, 0.04);
    transform: translateY(0);
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.08) 100%);
    opacity: 0;
    transition: all 0.6s ease;
    pointer-events: none;
    z-index: 1;
    border-radius: 32px;
}

.package-card:hover::before {
    opacity: 1;
}

.package-card:hover {
    transform: translateY(-20px) scale(1.03);
    box-shadow: 0 40px 80px rgba(102, 126, 234, 0.2), 0 20px 40px rgba(102, 126, 234, 0.1);
    border-color: rgba(102, 126, 234, 0.4);
    background: rgba(255, 255, 255, 0.98);
}

.package-card.popular {
    border-color: #f5576c;
    box-shadow: 0 15px 35px rgba(245, 87, 108, 0.2);
}

.package-card.popular:hover {
    box-shadow: 0 25px 50px rgba(245, 87, 108, 0.3);
}

/* Popular Badge - Positioned Above Title */
.popular-badge {
    position: absolute;
    top: 25px;
    right: 20px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e8e 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.35);
    z-index: 10;
    animation: popularFloat 3s ease-in-out infinite;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

@keyframes popularFloat {
    0%, 100% { 
        transform: translateY(0px) scale(1);
        box-shadow: 0 6px 20px rgba(255, 107, 107, 0.35);
    }
    50% { 
        transform: translateY(-3px) scale(1.02);
        box-shadow: 0 8px 25px rgba(255, 107, 107, 0.45);
    }
}

.package-header {
    background: transparent;
    border: none;
    padding: 0;
    position: relative;
    overflow: hidden;
    border-radius: 32px 32px 0 0;
}

.package-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.03) 0%, rgba(118, 75, 162, 0.03) 100%);
    pointer-events: none;
    border-radius: 32px 32px 0 0;
}

.package-card.popular .package-header::before {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.05) 0%, rgba(255, 142, 142, 0.05) 100%);
}

.package-title {
    padding: 2.5rem 2.5rem 1.5rem 2.5rem;
    position: relative;
    z-index: 2;
    text-align: center;
}

.package-title h3 {
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-size: 1.6rem;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.package-description {
    color: #6b7280;
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 400;
}

.package-price {
    padding: 1rem 2.5rem 2rem 2.5rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.price-main {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 1rem;
    background: rgba(102, 126, 234, 0.05);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid rgba(102, 126, 234, 0.1);
    transition: all 0.3s ease;
}

.package-card:hover .price-main {
    background: rgba(102, 126, 234, 0.08);
    border-color: rgba(102, 126, 234, 0.2);
    transform: scale(1.02);
}

.currency {
    font-size: 1.2rem;
    font-weight: 600;
    color: #667eea;
    margin-right: 0.3rem;
}

.amount {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: -1px;
}

.period {
    font-size: 1rem;
    color: #6b7280;
    margin-left: 0.3rem;
    font-weight: 500;
}

.setup-fee {
    font-size: 0.85rem;
    color: #6b7280;
    background: rgba(16, 185, 129, 0.1);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    display: inline-block;
    border: 1px solid rgba(16, 185, 129, 0.2);
    font-weight: 500;
}

.setup-fee.free {
    background: rgba(16, 185, 129, 0.15);
    color: #059669;
    border-color: rgba(16, 185, 129, 0.3);
}

/* Package Body - Clean Minimalist Design */
.package-body {
    padding: 2rem 2.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background: transparent;
    position: relative;
}

.package-body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.2), transparent);
}

.package-specs {
    margin-bottom: 2rem;
}

.spec-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    padding: 1.2rem;
    background: rgba(248, 250, 252, 0.8);
    border-radius: 20px;
    border: 1px solid rgba(226, 232, 240, 0.6);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.spec-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scaleY(0);
    transition: transform 0.3s ease;
    border-radius: 0 4px 4px 0;
}

.spec-item:hover::before {
    transform: scaleY(1);
}

.spec-item:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(102, 126, 234, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.spec-icon {
    width: 44px;
    height: 44px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.2rem;
    font-size: 1.1rem;
    color: #667eea;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border: 2px solid rgba(102, 126, 234, 0.1);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.spec-item:hover .spec-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: scale(1.1);
}

.spec-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.spec-label {
    font-weight: 500;
    color: #64748b;
    font-size: 0.85rem;
    margin-bottom: 0.2rem;
}

.spec-value {
    color: #1e293b;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: -0.2px;
}



/* Package Footer - Modern Clean Design */
.package-footer {
    padding: 2.5rem;
    background: rgba(248, 250, 252, 0.5);
    border-top: 1px solid rgba(226, 232, 240, 0.6);
    position: relative;
    border-radius: 0 0 32px 32px;
}

.package-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 3px;
}

.package-order-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 25px;
    padding: 1.2rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    width: 100%;
    color: white;
    letter-spacing: 0.3px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.25);
    backdrop-filter: blur(10px);
}

.package-order-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.package-order-btn::after {
    content: '✨';
    position: absolute;
    top: 50%;
    right: 1.5rem;
    transform: translateY(-50%);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.package-order-btn:hover::before {
    left: 100%;
}

.package-order-btn:hover::after {
    transform: translateY(-50%) translateX(5px) rotate(15deg);
    opacity: 1;
}

.package-order-btn:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.35);
}

.package-order-btn:active {
    transform: translateY(-2px) scale(0.99);
}

.package-card.popular .package-order-btn {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e8e 100%);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}

.package-card.popular .package-order-btn:hover {
    background: linear-gradient(135deg, #ff5252 0%, #ff7979 100%);
    box-shadow: 0 15px 35px rgba(255, 107, 107, 0.4);
}

.package-card.popular .package-footer::before {
    background: linear-gradient(90deg, #ff6b6b 0%, #ff8e8e 100%);
}

.package-card.popular .spec-item {
    background: rgba(255, 107, 107, 0.04);
    border-color: rgba(255, 107, 107, 0.1);
}

.package-card.popular .spec-item:hover {
    background: rgba(255, 107, 107, 0.08);
    border-color: rgba(255, 107, 107, 0.2);
}

.package-card.popular .spec-item:hover .spec-icon {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e8e 100%);
    color: white;
}

.package-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.package-action-link {
    color: var(--bs-gray-600);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.package-action-link:hover {
    color: #667eea;
}

/* Wide Screen Package Optimizations */
@media (min-width: 1600px) {
    .package-card {
        min-height: 650px;
    }
    
    .package-header {
        padding: 2.5rem;
    }
    
    .package-body {
        padding: 2.5rem;
    }
    
    .package-footer {
        padding: 2.5rem;
    }
    
    .package-title h3 {
        font-size: 1.5rem;
    }
    
    .amount {
        font-size: 2.8rem;
    }
}

@media (min-width: 1920px) {
    .package-card {
        min-height: 700px;
    }
    
    .spec-item {
        padding: 1.25rem;
        margin-bottom: 1.25rem;
    }
    
    .feature-item {
        padding: 0.75rem 0;
        margin-bottom: 1rem;
    }
}

/* Responsive Design - Enhanced */
@media (max-width: 1200px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .package-card {
        margin-bottom: 1.5rem;
    }
    
    .category-header {
        padding: 2rem 1.5rem;
    }
    
    .welcome-banner {
        padding: 2.5rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .content-area {
        padding: 1.5rem 1rem;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .category-navigation {
        grid-template-columns: 1fr;
    }
    
    .category-nav-item {
        padding: 1rem;
        width: 100%;
        text-align: center;
    }
    
    .category-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .welcome-banner {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .welcome-title {
        font-size: 2rem;
    }
    
    .welcome-subtitle {
        font-size: 1rem;
    }
    
    .category-header {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .category-title {
        font-size: 1.8rem;
    }
    
    .category-subtitle {
        font-size: 1rem;
    }
    
    .package-title h3 {
        font-size: 1.4rem;
    }
    
    .package-header,
    .package-body,
    .package-footer {
        padding: 1.5rem;
    }
    
    .amount {
        font-size: 2rem;
    }
    
    .package-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .package-card {
        border-radius: 24px;
    }
}

/* Dark Mode Support - Enhanced */
[data-bs-theme="dark"] .category-nav-card {
    background: linear-gradient(135deg, #1e1e2e 0%, #2d2d3a 100%);
}

[data-bs-theme="dark"] .category-nav-item {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

[data-bs-theme="dark"] .category-nav-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

[data-bs-theme="dark"] .package-card {
    background: rgba(15, 23, 42, 0.9);
    border-color: rgba(51, 65, 85, 0.4);
    color: #e2e8f0;
    backdrop-filter: blur(20px);
}

[data-bs-theme="dark"] .package-header {
    background: rgba(30, 41, 59, 0.6);
    border-color: rgba(51, 65, 85, 0.4);
}

[data-bs-theme="dark"] .package-footer {
    background: rgba(30, 41, 59, 0.5);
    border-color: rgba(51, 65, 85, 0.4);
}

[data-bs-theme="dark"] .spec-item {
    background: rgba(51, 65, 85, 0.4);
    border-color: rgba(71, 85, 105, 0.4);
}

[data-bs-theme="dark"] .spec-item:hover {
    background: rgba(51, 65, 85, 0.6);
    border-color: rgba(71, 85, 105, 0.6);
}

[data-bs-theme="dark"] .category-header {
    background: rgba(15, 23, 42, 0.9);
    border-color: rgba(51, 65, 85, 0.4);
    color: #e2e8f0;
}

[data-bs-theme="dark"] .welcome-banner {
    background: rgba(15, 23, 42, 0.9);
    border-color: rgba(51, 65, 85, 0.4);
    color: #e2e8f0;
}

[data-bs-theme="dark"] .category-title,
[data-bs-theme="dark"] .package-title h3,
[data-bs-theme="dark"] .amount,
[data-bs-theme="dark"] .welcome-title {
    color: #f8fafc;
}

[data-bs-theme="dark"] .package-description,
[data-bs-theme="dark"] .spec-label,
[data-bs-theme="dark"] .category-subtitle,
[data-bs-theme="dark"] .welcome-subtitle {
    color: #cbd5e1;
}

[data-bs-theme="dark"] .spec-value {
    color: #f8fafc;
}

[data-bs-theme="dark"] .price-main {
    background: rgba(102, 126, 234, 0.15);
    border-color: rgba(102, 126, 234, 0.3);
}

/* Loading Animation */
.package-card.loading {
    pointer-events: none;
    opacity: 0.7;
}

.package-card.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Category Focus States */
.category-nav-item:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

.package-order-btn:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}