/* ============================================
   HOME PAGE - BANNER & PRICING
   ============================================ */

/* Banner Section */
.banner-section {
    padding: 1.25rem 0;
}

.banner-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    position: relative;
}

.banner-wrapper .owl-carousel {
    display: block !important;
}

.banner-wrapper .owl-stage-outer {
    overflow: hidden !important;
    width: 100% !important;
}

.banner-wrapper .owl-stage {
    display: flex !important;
    width: 100% !important;
}

.banner-wrapper .owl-item {
    width: 100% !important;
    float: none !important;
    display: block !important;
}

.banner-wrapper .owl-carousel .item {
    width: 100% !important;
    display: block !important;
    position: relative;
}

.banner-image {
    width: 100% !important;
    height: 380px !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
}

/* Owl Carousel Navigation */
.banner-wrapper .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    pointer-events: none;
}

.banner-wrapper .owl-nav button {
    pointer-events: all;
    width: 45px !important;
    height: 45px !important;
    border-radius: 50% !important;
    background: rgba(255,255,255,0.95) !important;
    color: #1561ac !important;
    font-size: 1.2rem !important;
    transition: all 0.3s !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15) !important;
    border: none !important;
    line-height: 45px !important;
}

.banner-wrapper .owl-nav button:hover {
    background: #fff !important;
    transform: scale(1.1) !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.25) !important;
}

.banner-wrapper .owl-dots {
    position: absolute;
    bottom: 1rem;
    width: 100%;
    text-align: center;
    margin: 0;
}

.banner-wrapper .owl-dot {
    display: inline-block;
    margin: 0 0.3rem;
}

.banner-wrapper .owl-dot span {
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,0.5);
    display: block;
    border-radius: 50%;
    transition: all 0.3s;
    margin: 0;
}

.banner-wrapper .owl-dot.active span {
    width: 30px;
    border-radius: 5px;
    background: #fff;
}

/* Pricing Section */
.pricing-section {
    padding: 1rem 0 2rem;
}

.pricing-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    overflow: hidden;
}

.pricing-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
}

.pricing-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.pricing-header i {
    font-size: 1.5rem;
    color: #fff;
    position: relative;
    z-index: 1;
}

.pricing-header h2 {
    margin: 0;
    font-size: 1.35rem;
    font-weight: 600;
    color: #fff;
    position: relative;
    z-index: 1;
}

.pricing-body {
    padding: 0;
}

.pricing-table {
    width: 100%;
    margin: 0;
    border-collapse: separate;
    border-spacing: 0;
}

.pricing-table thead {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 3px solid #667eea;
}

.pricing-table thead th {
    padding: 1rem 0.75rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: #2c3e50;
    text-align: center;
    border-bottom: none;
}

.pricing-table thead th.card-type {
    text-align: left;
    padding-left: 1.5rem;
    min-width: 180px;
}

.pricing-table tbody tr {
    transition: all 0.2s;
}

.pricing-table tbody tr:nth-child(even) {
    background: #fafbfc;
}

.pricing-table tbody tr:hover {
    background: linear-gradient(to right, #f0f4ff, #f8f9fa);
    transform: scale(1.005);
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.1);
}

.pricing-table tbody td {
    padding: 0.85rem 0.75rem;
    text-align: center;
    border-bottom: 1px solid #e9ecef;
}

.pricing-table tbody td.card-name {
    text-align: left;
    padding-left: 1.5rem;
    font-weight: 500;
    color: #212529;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.card-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.rate-badge {
    display: inline-block;
    padding: 0.4rem 0.75rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 2px 4px rgba(16, 185, 129, 0.25);
    transition: all 0.3s;
}

.rate-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(16, 185, 129, 0.35);
}

/* Responsive - Tablet */
@media (max-width: 991px) {
    .banner-image {
        height: 320px !important;
    }
    
    .pricing-header {
        padding: 1rem 1.25rem;
    }
    
    .pricing-header h2 {
        font-size: 1.2rem;
    }
    
    .pricing-table thead th,
    .pricing-table tbody td {
        padding: 0.75rem 0.5rem;
        font-size: 0.85rem;
    }
    
    .card-icon {
        width: 28px;
        height: 28px;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .banner-section {
        padding: 1rem 0;
    }
    
    .banner-wrapper {
        border-radius: 10px;
    }
    
    .banner-image {
        height: 260px !important;
    }
    
    .banner-wrapper .owl-nav button {
        width: 38px;
        height: 38px;
        font-size: 1rem !important;
    }
    
    .banner-wrapper .owl-nav button.owl-prev {
        left: 0.5rem;
    }
    
    .banner-wrapper .owl-nav button.owl-next {
        right: 0.5rem;
    }
    
    .pricing-section {
        padding: 0.5rem 0 1.5rem;
    }
    
    .pricing-card {
        border-radius: 10px;
    }
    
    .pricing-header {
        padding: 0.85rem 1rem;
    }
    
    .pricing-header i {
        font-size: 1.25rem;
    }
    
    .pricing-header h2 {
        font-size: 1.1rem;
    }
    
    .pricing-table thead th {
        padding: 0.65rem 0.4rem;
        font-size: 0.8rem;
    }
    
    .pricing-table thead th.card-type {
        padding-left: 1rem;
        min-width: 140px;
    }
    
    .pricing-table tbody td {
        padding: 0.65rem 0.4rem;
    }
    
    .pricing-table tbody td.card-name {
        padding-left: 1rem;
        font-size: 0.85rem;
    }
    
    .card-icon {
        width: 24px;
        height: 24px;
    }
    
    .rate-badge {
        padding: 0.3rem 0.55rem;
        font-size: 0.8rem;
    }
}

/* Small Mobile */
@media (max-width: 576px) {
    .banner-wrapper {
        border-radius: 8px;
    }
    
    .pricing-card {
        border-radius: 8px;
    }
    
    .pricing-table thead th {
        font-size: 0.75rem;
        padding: 0.6rem 0.3rem;
    }
    
    .pricing-table thead th.card-type {
        min-width: 120px;
        padding-left: 0.75rem;
    }
    
    .pricing-table tbody td {
        padding: 0.6rem 0.3rem;
    }
    
    .pricing-table tbody td.card-name {
        padding-left: 0.75rem;
        font-size: 0.8rem;
        gap: 0.5rem;
    }
}
