/* ============================================
   Modern Breadcrumbs & Hero Section Styles
   for Kuwait Page - Tiger TV
   ============================================ */

/* ==================== BREADCRUMBS MODERN ==================== */
.breadcrumbs-modern {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    color: #6c757d;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    font-weight: 500;
}

.breadcrumb-link:hover {
    background: #fff;
    color: #FF6B00;
    box-shadow: 0 2px 8px rgba(255, 107, 0, 0.1);
    transform: translateY(-1px);
}

.breadcrumb-link i {
    font-size: 0.9rem;
}

.breadcrumb-separator {
    color: #dee2e6;
    font-size: 0.75rem;
}

.breadcrumb-current {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    color: #FF6B00;
    font-weight: 600;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(255, 107, 0, 0.15);
}

.breadcrumb-current i {
    font-size: 0.9rem;
}

/* ==================== HERO MODERN ==================== */
.hero-modern {
    position: relative;
    padding: 4rem 0 5rem;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.1) 0%, rgba(22, 33, 62, 0.9) 100%);
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 107, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 0, 0.1) 0%, transparent 50%);
    opacity: 0.5;
}

.hero-wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content-modern {
    color: #fff;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 1.5rem;
    animation: fadeInDown 0.6s ease;
}

.badge-icon {
    font-size: 1.25rem;
}

.badge-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: #fff;
}

.hero-title {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease;
}

.title-highlight {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FF6B00;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.title-main {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    background: linear-gradient(135deg, #fff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-sub {
    font-size: 1.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    animation: fadeIn 1s ease;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1.2s ease;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.hero-feature-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-5px);
}

.hero-feature-item i {
    color: #FF6B00;
    font-size: 1.25rem;
}

.hero-feature-item span {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 1.4s ease;
}

.btn-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-width: 200px;
}

.btn-hero i {
    font-size: 1.5rem;
}

.btn-hero span {
    font-size: 1rem;
}

.btn-hero small {
    font-size: 0.75rem;
    opacity: 0.9;
    font-weight: 400;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #FF6B00 0%, #ff8533 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.hero-trust {
    display: flex;
    gap: 2rem;
    animation: fadeIn 1.6s ease;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.trust-item i {
    font-size: 2rem;
    color: #FF6B00;
}

.trust-content {
    display: flex;
    flex-direction: column;
}

.trust-content strong {
    font-size: 1.25rem;
    color: #fff;
    font-weight: 700;
}

.trust-content span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    animation: fadeInRight 1s ease;
}

.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.stat-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 107, 0, 0.1);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(255, 107, 0, 0.2);
    border-color: rgba(255, 107, 0, 0.3);
}

.stat-card i {
    font-size: 3rem;
    color: #FF6B00;
}

.stat-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-content strong {
    font-size: 1.5rem;
    color: #1a1a2e;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.stat-content span {
    font-size: 0.9rem;
    color: #6c757d;
}

.hero-image-wrapper {
    position: relative;
    z-index: 2;
}

.hero-image-decoration {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.circle-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #FF6B00 0%, #ff8533 100%);
    top: -200px;
    left: -200px;
    animation: pulse 3s ease-in-out infinite;
}

.circle-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #0f3460 0%, #16213e 100%);
    top: -150px;
    left: -150px;
    animation: pulse 4s ease-in-out infinite;
}

.circle-3 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #FF6B00 0%, #ff8533 100%);
    top: -100px;
    left: -100px;
    animation: pulse 5s ease-in-out infinite;
}

.hero-main-image {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 3;
    animation: float 3s ease-in-out infinite;
}

.floating-card i {
    font-size: 2rem;
    color: #FF6B00;
}

.card-content {
    display: flex;
    flex-direction: column;
}

.card-content strong {
    font-size: 1.25rem;
    color: #1a1a2e;
    font-weight: 700;
}

.card-content span {
    font-size: 0.85rem;
    color: #6c757d;
}

.card-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: -15%;
    animation-delay: 1s;
}

.card-3 {
    bottom: 10%;
    right: -10%;
    animation-delay: 2s;
}

/* ==================== PACKAGES NOTICE BOX ==================== */
.packages-notice-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    padding: 2rem;
    margin-top: 3rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.notice-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: #fff;
    border-radius: 12px;
    border-right: 4px solid #0d6efd;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.notice-item:hover {
    transform: translateX(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.notice-item i {
    font-size: 1.5rem;
    color: #0d6efd;
}

.notice-item span {
    color: #495057;
    font-size: 0.95rem;
    line-height: 1.6;
}

.notice-item.warning {
    border-right-color: #ffc107;
}

.notice-item.warning i {
    color: #ffc107;
}

.notice-item strong {
    color: #212529;
    font-weight: 600;
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.15;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 992px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .title-main {
        font-size: 2rem;
    }
    
    .title-sub {
        font-size: 1.5rem;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .btn-hero {
        width: 100%;
    }
    
    .hero-trust {
        flex-direction: column;
        gap: 1rem;
    }
    
    .floating-card {
        display: none;
    }
}

@media (max-width: 768px) {
    .breadcrumb-list {
        font-size: 0.85rem;
    }
    
    .breadcrumb-link,
    .breadcrumb-current {
        padding: 0.4rem 0.75rem;
    }
    
    .hero-modern {
        padding: 2rem 0 3rem;
    }
    
    .title-highlight {
        font-size: 1.25rem;
    }
    
    .title-main {
        font-size: 1.75rem;
    }
    
    .title-sub {
        font-size: 1.25rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .packages-notice-box {
        padding: 1.5rem;
    }
    
    .notice-item {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
}
