/* ============================================
   Modern Breadcrumbs & Hero Section Styles
   for KSA 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.08) 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 ==================== */
.hero-content-modern {
    color: #fff;
}

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

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

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

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease 0.1s backwards;
}

.title-highlight {
    display: block;
    color: #FF6B00;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 30px rgba(255, 107, 0, 0.5);
}

.title-main {
    display: block;
    color: #fff;
    margin-bottom: 0.25rem;
}

.title-sub {
    display: block;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease 0.2s backwards;
}

.hero-description strong {
    color: #FF6B00;
    font-weight: 700;
}

/* ==================== HERO FEATURES ==================== */
.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease 0.3s backwards;
}

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

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

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

.hero-feature-item span {
    font-size: 0.95rem;
    font-weight: 500;
    color: #fff;
}

/* ==================== HERO ACTIONS ==================== */
.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.6s ease 0.4s backwards;
}

.btn-hero {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-hero i {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

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

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

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

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

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

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #25D366;
    transform: translateY(-3px);
}

/* ==================== TRUST INDICATORS ==================== */
.hero-trust {
    display: flex;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeInUp 0.6s ease 0.5s backwards;
}

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

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

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

.trust-content strong {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.25rem;
}

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

/* ==================== HERO VISUAL ==================== */
.hero-visual {
    position: relative;
    animation: fadeInRight 0.8s ease 0.3s backwards;
}

.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%;
    animation: pulse 3s ease-in-out infinite;
}

.circle-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.1) 0%, transparent 70%);
    top: -200px;
    left: -200px;
}

.circle-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.15) 0%, transparent 70%);
    top: -150px;
    left: -150px;
    animation-delay: 1s;
}

.circle-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.2) 0%, transparent 70%);
    top: -100px;
    left: -100px;
    animation-delay: 2s;
}

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

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

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

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

.card-content strong {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1;
    margin-bottom: 0.25rem;
}

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

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

.card-2 {
    bottom: 30%;
    right: -5%;
    animation-delay: 1s;
}

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

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

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

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.3;
    }
}

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

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 1024px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .title-highlight {
        font-size: 1.75rem;
    }
    
    .title-sub {
        font-size: 1.25rem;
    }
    
    .floating-card {
        display: none;
    }
}

@media (max-width: 768px) {
    .breadcrumb-link span,
    .breadcrumb-current span {
        display: none;
    }
    
    .breadcrumb-link i,
    .breadcrumb-current i {
        margin: 0;
    }
    
    .hero-modern {
        padding: 3rem 0 4rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .title-highlight {
        font-size: 1.5rem;
    }
    
    .title-sub {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .btn-hero {
        width: 100%;
        text-align: center;
    }
    
    .hero-trust {
        flex-direction: column;
        gap: 1rem;
    }
    
    .trust-item {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .breadcrumbs-modern {
        padding: 0.75rem 0;
    }
    
    .breadcrumb-link,
    .breadcrumb-current {
        padding: 0.4rem 0.75rem;
        font-size: 0.85rem;
    }
    
    .hero-badge {
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .title-highlight {
        font-size: 1.25rem;
    }
    
    .title-sub {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .btn-hero {
        padding: 0.875rem 1.5rem;
    }
    
    .trust-content strong {
        font-size: 1.25rem;
    }
}

/* ==================== PACKAGES NOTICE BOX ==================== */
.packages-notice-box {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

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

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

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

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

.notice-item.warning {
    border-left-color: #dc3545;
}

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

.notice-item.warning span {
    color: #721c24;
}

.notice-item strong {
    font-weight: 700;
    color: #dc3545;
}

@media (max-width: 768px) {
    .packages-notice-box {
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .notice-item {
        padding: 0.75rem;
        flex-direction: column;
        text-align: center;
        border-left: none;
        border-top: 4px solid #0d6efd;
    }
    
    .notice-item.warning {
        border-left: none;
        border-top-color: #dc3545;
    }
    
    .notice-item i {
        font-size: 1.25rem;
    }
    
    .notice-item span {
        font-size: 0.9rem;
    }
}

/* ==================== RTL SUPPORT ==================== */
[dir="rtl"] .breadcrumb-separator i {
    transform: scaleX(-1);
}

[dir="rtl"] .notice-item {
    border-left: none;
    border-right: 4px solid #0d6efd;
}

[dir="rtl"] .notice-item.warning {
    border-right-color: #dc3545;
}

[dir="rtl"] .notice-item:hover {
    transform: translateX(3px);
}

[dir="rtl"] .hero-feature-item:hover {
    transform: translateX(5px);
}

[dir="rtl"] .floating-card.card-1 {
    right: auto;
    left: -10%;
}

[dir="rtl"] .floating-card.card-2 {
    right: auto;
    left: -5%;
}

[dir="rtl"] .floating-card.card-3 {
    left: auto;
    right: -10%;
}
