/* UK Specific Styles */
:root {
    --primary-color: #00247d; /* أزرق من العلم البريطاني */
    --secondary-color: #cf142b; /* أحمر من العلم البريطاني */
    --accent-color: #ffffff;
    --text-color: #333333;
    --light-bg: #f8f9fa;
    --dark-bg: #343a40;
    --border-color: #dee2e6;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
    --uk-blue: #00247d;
    --uk-red: #cf142b;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #f5f5f5;
}

/* Hero Section Specific to UK */
.hero {
    background: linear-gradient(rgba(0, 36, 125, 0.8), rgba(0, 36, 125, 0.9)), url('https://upload.wikimedia.org/wikipedia/commons/a/a5/London_eye_at_night.jpg') no-repeat center center;
    background-size: cover;
    color: white;
    padding: 100px 0 70px;
    position: relative;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: var(--uk-red);
    color: white;
    border: 2px solid var(--uk-red);
}

.btn-primary:hover {
    background-color: #b30d21;
    border-color: #b30d21;
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.hero-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 40px;
}

.hero-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
}

.hero-feature i {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--uk-red);
}

/* UK Packages Styling */
.uk-packages {
    background-color: var(--light-bg);
    padding: 80px 0;
    text-align: center;
}

.uk-packages h2 {
    color: var(--uk-blue);
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.package-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.package-header {
    background-color: var(--uk-blue);
    color: white;
    padding: 25px 20px;
    text-align: center;
}

.package-card.trial .package-header {
    background-color: #555;
}

.package-card.premium .package-header {
    background-color: var(--uk-red);
}

.package-header h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
}

.savings {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-top: 10px;
    display: inline-block;
}

.package-content {
    padding: 30px 25px;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
    text-align: left;
}

.package-features li {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eee;
}

.package-features li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.package-features i {
    color: var(--uk-blue);
    margin-right: 10px;
}

.package-card.premium .package-features i {
    color: var(--uk-red);
}

.btn-block {
    display: block;
    width: 100%;
    padding: 12px;
    background-color: var(--uk-blue);
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-block:hover {
    background-color: var(--uk-red);
}

.package-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--uk-red);
    color: white;
    padding: 8px 15px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 0 10px 0 10px;
}

.package-card.premium .package-badge {
    background-color: #ffc107;
    color: #333;
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: white;
    text-align: center;
}

.features h2 {
    color: var(--uk-blue);
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background-color: #f8f9fa;
    padding: 40px 30px;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 3rem;
    color: var(--uk-red);
    margin-bottom: 20px;
}

.feature-card h3 {
    color: var(--uk-blue);
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

/* UK Channels Section */
.uk-channels {
    padding: 80px 0;
    background-color: var(--light-bg);
    text-align: center;
}

.uk-channels h2 {
    color: var(--uk-blue);
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.uk-channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.uk-channel-card {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.uk-channel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.uk-channel-card img {
    height: 60px;
    width: auto;
    margin-bottom: 15px;
    object-fit: contain;
}

.uk-channel-card h3 {
    color: var(--uk-blue);
    font-size: 1.1rem;
    margin: 0;
    font-weight: 600;
}

/* Coverage Section */
.coverage {
    padding: 80px 0;
    background-color: white;
    text-align: center;
}

.coverage h2 {
    color: var(--uk-blue);
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.coverage-map {
    max-width: 800px;
    margin: 40px auto;
}

.coverage-map img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.coverage-areas {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
}

.coverage-areas h3 {
    color: var(--uk-blue);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.coverage-areas ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.coverage-areas li {
    background-color: var(--uk-red);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
}

/* UK IPTV Information Section Styles */
.uk-iptv-info-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    color: #333;
}

.uk-iptv-info-section h2 {
    color: var(--uk-blue);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 15px;
    font-weight: 700;
}

.uk-iptv-info-section .section-subtitle {
    text-align: center;
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.uk-iptv-intro {
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.7;
}

.uk-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 25px;
    margin-bottom: 50px;
}

.info-card, .exchange-card, .image-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.info-card:hover, .exchange-card:hover, .image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.uk-iptv-info-section h3 {
    color: white;
    padding: 15px 20px;
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.info-card h3 {
    background-color: var(--uk-blue);
}

.exchange-card h3 {
    background-color: var(--uk-red);
}

.image-card h3 {
    background-color: #2a2a2a;
}

.info-content, .exchange-content {
    padding: 20px;
}

.info-list, .pricing-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list li, .pricing-list li {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eee;
}

.info-list li:last-child, .pricing-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.image-card img {
    width: 100%;
    height: auto;
    display: block;
}

.image-caption {
    padding: 15px;
    color: #666;
    font-style: italic;
    font-size: 0.9rem;
    text-align: center;
}

/* UK Facts Section */
.uk-facts {
    margin-bottom: 50px;
}

.uk-facts h3 {
    background-color: var(--uk-blue);
    color: white;
    padding: 15px 20px;
    border-radius: 10px 10px 0 0;
    margin-bottom: 25px;
    text-align: center;
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.fact-card {
    background-color: white;
    border-radius: 10px;
    padding: 25px 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.fact-card:hover {
    transform: translateY(-5px);
}

.fact-icon {
    font-size: 2.5rem;
    color: var(--uk-red);
    margin-bottom: 15px;
}

.fact-card h4 {
    color: var(--uk-blue);
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.fact-card p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* UK Channel Comparison Table */
.media-comparison {
    margin-bottom: 50px;
}

.media-comparison h3 {
    background-color: var(--uk-red);
    color: white;
    padding: 15px 20px;
    border-radius: 10px 10px 0 0;
    margin-bottom: 0;
    text-align: center;
}

.comparison-table {
    background-color: white;
    border-radius: 0 0 10px 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th, .comparison-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.comparison-table th {
    background-color: #f8f9fa;
    color: var(--uk-blue);
    font-weight: 600;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:hover td {
    background-color: #f8f9fa;
}

/* Location Based Information */
.location-info {
    margin-bottom: 50px;
}

.location-info h3 {
    background-color: var(--uk-blue);
    color: white;
    padding: 15px 20px;
    border-radius: 10px 10px 0 0;
    margin-bottom: 20px;
    text-align: center;
}

.location-info > p {
    text-align: center;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.city-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.city-item {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.city-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.city-item h4 {
    color: var(--uk-red);
    margin-bottom: 10px;
    font-size: 1.2rem;
    font-weight: 600;
}

.city-item p {
    color: #555;
    font-size: 0.95rem;
}

/* SEO Content Section */
.seo-content {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.seo-content h3 {
    color: var(--uk-blue);
    margin-bottom: 20px;
    padding: 0;
    background-color: transparent;
    text-align: center;
}

.seo-content p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: #333;
}

.seo-content p:last-child {
    margin-bottom: 0;
}

.seo-content strong {
    color: var(--uk-red);
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background-color: white;
    text-align: center;
}

.faq h2 {
    color: var(--uk-blue);
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.faq-accordion {
    margin-top: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    background-color: #f8f9fa;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: var(--uk-blue);
    color: white;
    cursor: pointer;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.faq-toggle {
    font-size: 1rem;
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer p {
    padding: 20px;
    margin: 0;
    text-align: left;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 20px;
}

.faq-item.active .faq-toggle i {
    transform: rotate(180deg);
}

/* Footer Styles */
.site-footer {
    background-color: var(--uk-blue);
    color: white;
    padding: 70px 0 20px;
}

.footer-flex-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.footer-flex-item h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.footer-flex-item h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: var(--uk-red);
}

.footer-flex-item p {
    line-height: 1.6;
    opacity: 0.8;
}

.footer-links-flex {
    display: flex;
    flex-direction: column;
}

.footer-links-flex a {
    color: white;
    text-decoration: none;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.footer-links-flex a:hover {
    color: var(--uk-red);
    opacity: 1;
    padding-left: 5px;
}

.contact-info-flex {
    display: flex;
    flex-direction: column;
}

.contact-info-flex a {
    color: white;
    text-decoration: none;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.contact-info-flex a:hover {
    color: var(--uk-red);
    opacity: 1;
}

.contact-info-flex i {
    margin-right: 10px;
    font-size: 1.2rem;
    color: var(--uk-red);
}

.social-links-flex {
    display: flex;
    gap: 15px;
}

.social-links-flex a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links-flex a:hover {
    background-color: var(--uk-red);
    transform: translateY(-5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.copyright p {
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 999;
}

.floating-whatsapp a {
    display: flex;
    align-items: center;
    background-color: #25D366;
    color: white;
    padding: 12px 20px;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.floating-whatsapp a:hover {
    background-color: #1da851;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.floating-whatsapp i {
    font-size: 1.5rem;
    margin-right: 10px;
}

/* Breadcrumbs Styles */
.breadcrumbs {
    background-color: #f5f5f5;
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
}

.breadcrumbs ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.breadcrumbs li {
    font-size: 0.9rem;
    color: #666;
}

.breadcrumbs li:not(:last-child)::after {
    content: "/";
    margin: 0 10px;
    color: #ccc;
}

.breadcrumbs a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumbs a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .container {
        padding: 0 20px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .packages-grid {
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .features-grid, 
    .packages-grid,
    .footer-flex-container,
    .uk-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .image-card {
        grid-column: span 2;
    }
    
    .facts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .features-grid, 
    .footer-flex-container,
    .uk-info-grid {
        grid-template-columns: 1fr;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .image-card {
        grid-column: auto;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .city-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .comparison-table {
        overflow-x: auto;
        display: block;
    }
    
    .comparison-table table {
        min-width: 650px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .floating-whatsapp a span {
        display: none;
    }
    
    .floating-whatsapp a {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        justify-content: center;
        padding: 0;
    }
    
    .floating-whatsapp i {
        margin: 0;
    }
}

@media (max-width: 576px) {
    .facts-grid,
    .city-grid {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero-feature {
        width: 45%;
    }
    
    .uk-channels-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* JavaScript Style for FAQ */
.faq-item.active .faq-question {
    background-color: var(--uk-red);
}

.faq-item.active .faq-toggle i {
    transform: rotate(180deg);
}
