/* Qatar Specific Styles - Based on Qatar flag colors (Maroon/White) */

:root {
    --qatar-primary: #8A1538;  /* Qatar Maroon */
    --qatar-secondary: #FFFFFF; /* White */
    --qatar-accent: #6B1028;   /* Darker Maroon */
    --qatar-light: #F9F9F9;    /* Off-white for backgrounds */
    --qatar-gray: #F0F0F0;     /* Light gray for sections */
    --qatar-text: #333333;     /* Text color */
}

/* Hero Section Qatar-specific */
.hero {
    background: linear-gradient(135deg, var(--qatar-primary) 0%, var(--qatar-accent) 100%);
    color: var(--qatar-secondary);
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 33%;
    background: var(--qatar-secondary);
    clip-path: polygon(100% 0, 0 0, 100% 100%);
    opacity: 0.1;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/qatar-pattern.png');
    background-repeat: repeat;
    background-size: 200px;
    opacity: 0.05;
    z-index: 1;
}

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

.hero-content h1 {
    color: var(--qatar-secondary);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--qatar-light);
}

.hero .btn-primary {
    background-color: var(--qatar-secondary);
    color: var(--qatar-primary);
}

.hero .btn-primary:hover {
    background-color: var(--qatar-light);
}

.hero .btn-outline {
    border-color: var(--qatar-secondary);
    color: var(--qatar-secondary);
}

.hero .btn-outline:hover {
    background-color: var(--qatar-secondary);
    color: var(--qatar-primary);
}

/* Features Section Qatar-specific */
.features {
    background-color: var(--qatar-light);
    padding: 4rem 0;
}

.features h2 {
    color: var(--qatar-primary);
    margin-bottom: 2rem;
    text-align: center;
    font-size: 2rem;
    position: relative;
}

.features h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 50%;
    transform: translateX(50%);
    width: 80px;
    height: 3px;
    background-color: var(--qatar-primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background-color: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-icon {
    background-color: var(--qatar-primary);
    color: var(--qatar-secondary);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.feature-icon i {
    font-size: 1.5rem;
}

.feature-card h3 {
    color: var(--qatar-primary);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.feature-card p {
    color: var(--qatar-text);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Packages Section Qatar-specific */
.qatar-packages {
    background-color: #F5F5F5;
    padding: 4rem 0;
    position: relative;
}

.qatar-packages::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--qatar-primary) 0%, var(--qatar-accent) 100%);
}

.qatar-packages h2 {
    color: var(--qatar-primary);
    text-align: center;
    margin-bottom: 0.5rem;
    font-size: 2rem;
    position: relative;
}

.qatar-packages h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 50%;
    transform: translateX(50%);
    width: 80px;
    height: 3px;
    background-color: var(--qatar-primary);
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.package-card {
    background: #FFFFFF;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    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.1);
}

.package-card.popular {
    border: 2px solid var(--qatar-primary);
    transform: scale(1.03);
}

.popular-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--qatar-primary);
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    border-bottom-left-radius: 8px;
}

.package-header {
    background: linear-gradient(135deg, var(--qatar-primary) 0%, var(--qatar-accent) 100%);
    color: white;
    padding: 2rem 1.5rem;
    text-align: center;
}

.package-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.package-price {
    margin-top: 1rem;
}

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

.currency {
    font-size: 1.2rem;
    vertical-align: super;
    margin-right: 0.2rem;
}

.period {
    font-size: 0.9rem;
    opacity: 0.8;
}

.package-body {
    padding: 2rem 1.5rem;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.package-features li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
}

.package-features li i {
    color: var(--qatar-primary);
    margin-left: 0.5rem;
    font-size: 1rem;
}

.package-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.btn-primary {
    background-color: var(--qatar-primary);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--qatar-accent);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--qatar-primary);
    color: var(--qatar-primary);
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-outline:hover {
    background-color: var(--qatar-primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Channels Section */
.channels {
    padding: 4rem 0;
    background-color: #fff;
}

.channels h2 {
    color: var(--qatar-primary);
    text-align: center;
    margin-bottom: 0.5rem;
    font-size: 2rem;
    position: relative;
}

.channels h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 50%;
    transform: translateX(50%);
    width: 80px;
    height: 3px;
    background-color: var(--qatar-primary);
}

.channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.channel-card {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.channel-card img {
    max-width: 100%;
    height: auto;
    margin-bottom: 1rem;
    border-radius: 5px;
}

.channel-card h3 {
    color: var(--qatar-primary);
    margin: 0;
    font-size: 1.1rem;
}

/* Devices Section */
.devices {
    padding: 4rem 0;
    background-color: var(--qatar-light);
}

.devices h2 {
    color: var(--qatar-primary);
    text-align: center;
    margin-bottom: 0.5rem;
    font-size: 2rem;
    position: relative;
}

.devices h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 50%;
    transform: translateX(50%);
    width: 80px;
    height: 3px;
    background-color: var(--qatar-primary);
}

.devices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.device-card {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.device-icon {
    background-color: var(--qatar-primary);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.device-icon i {
    font-size: 2rem;
}

.device-card h3 {
    color: var(--qatar-primary);
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.device-card p {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* FAQ Section */
.faq {
    background-color: var(--qatar-gray);
    padding: 70px 0;
    position: relative;
}

.faq::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/qatar-pattern.png');
    background-size: 200px;
    opacity: 0.05;
    z-index: 0;
}

.faq .container {
    position: relative;
    z-index: 1;
}

.faq h2 {
    color: var(--qatar-primary);
    text-align: center;
    margin-bottom: 15px;
    font-size: 32px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.faq h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--qatar-primary), var(--qatar-accent));
}

.faq .section-subtitle {
    text-align: center;
    margin-bottom: 40px;
    display: block;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-list-horizontal {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.faq-row {
    display: flex;
    flex-direction: row;
    gap: 25px;
    width: 100%;
}

.faq-item {
    background-color: var(--qatar-secondary);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 0;
    border-right: 3px solid var(--qatar-primary);
}

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

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    background-color: rgba(138, 21, 56, 0.03);
}

.faq-question h3 {
    margin: 0;
    font-size: 17px;
    font-weight: 600;
    color: var(--qatar-primary);
    padding-left: 20px;
    line-height: 1.4;
}

.faq-toggle {
    font-size: 16px;
    color: var(--qatar-primary);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(138, 21, 56, 0.1);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

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

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

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    background-color: var(--qatar-primary);
    color: white;
}

.faq-answer p {
    color: var(--qatar-text);
    line-height: 1.7;
    margin: 0;
}

.faq-more {
    text-align: center;
    margin-top: 30px;
}

.faq-more p {
    color: var(--qatar-text);
}

.faq-more a {
    color: var(--qatar-primary);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.faq-more a:hover {
    text-decoration: underline;
}

/* تعديلات للشاشات الصغيرة والمتوسطة */
@media (max-width: 992px) {
    .faq-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .faq-question h3 {
        font-size: 16px;
    }
    
    .faq h2 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .faq {
        padding: 50px 0;
    }
    
    .faq-question h3 {
        font-size: 15px;
        padding-left: 10px;
    }
    
    .faq-toggle {
        width: 20px;
        height: 20px;
        font-size: 14px;
    }
    
    .faq-question, .faq-item.active .faq-answer {
        padding: 15px;
    }
    
    .faq h2 {
        font-size: 24px;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 4rem 0;
    background-color: var(--qatar-light);
}

.testimonials h2 {
    color: var(--qatar-primary);
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
    position: relative;
}

.testimonials h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 50%;
    transform: translateX(50%);
    width: 80px;
    height: 3px;
    background-color: var(--qatar-primary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    position: relative;
}

.testimonial-card::before {
    content: '\201D';
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 4rem;
    color: var(--qatar-primary);
    opacity: 0.1;
}

.testimonial-content p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-style: italic;
    color: #444;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-left: 1rem;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    margin: 0;
    color: var(--qatar-primary);
    font-size: 1.1rem;
}

.author-info p {
    margin: 0;
    font-size: 0.9rem;
    color: #777;
}

/* CTA Section */
.cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--qatar-primary) 0%, var(--qatar-accent) 100%);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/qatar-pattern.png');
    background-repeat: repeat;
    background-size: 200px;
    opacity: 0.05;
    z-index: 1;
}

.cta-content {
    text-align: center;
    color: white;
    position: relative;
    z-index: 2;
}

.cta h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons .btn-primary {
    background-color: white;
    color: var(--qatar-primary);
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.cta-buttons .btn-primary:hover {
    background-color: var(--qatar-light);
    transform: translateY(-5px);
}

/* Footer Styles */
.site-footer {
    background-color: var(--qatar-primary);
    color: white;
    padding: 50px 0 20px;
    position: relative;
}

.site-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/qatar-pattern.png');
    background-size: 200px;
    opacity: 0.1;
    z-index: 0;
}

.site-footer .container {
    position: relative;
    z-index: 1;
}

.footer-content-horizontal {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-logo {
    flex: 0 0 200px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-tagline {
    margin-top: 15px;
    font-size: 14px;
    opacity: 0.9;
}

.footer-links-horizontal {
    flex: 1;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-around;
}

.footer-section {
    min-width: 200px;
}

.footer-section h3 {
    color: white;
    font-size: 18px;
    margin-bottom: 15px;
    position: relative;
}

.footer-section h3::after {
    content: "";
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 40px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.3);
}

.horizontal-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px 20px;
}

.horizontal-links li {
    position: relative;
}

.horizontal-links li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 14px;
    padding: 0 10px;
    border-radius: 15px;
}

.horizontal-links li a:hover,
.horizontal-links li a.active {
    color: white;
    text-decoration: underline;
}

.footer-contact-horizontal {
    flex: 0 0 300px;
}

.contact-info-horizontal {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-info-horizontal li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s;
}

.contact-info-horizontal li a:hover {
    color: white;
}

.contact-info-horizontal li a i {
    width: 20px;
    text-align: center;
}

.social-links-horizontal {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links-horizontal a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 20px;
    transition: all 0.3s;
}

.social-links-horizontal a:hover {
    color: white;
    transform: translateY(-3px);
}

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

.footer-payments {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.footer-payments span {
    opacity: 0.7;
}

.footer-payments img {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 4px;
    padding: 2px;
}

.footer-bottom p {
    opacity: 0.8;
}

/* تعديلات للشاشات الصغيرة */
@media (max-width: 992px) {
    .footer-content-horizontal {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-logo {
        align-items: center;
        text-align: center;
        margin: 0 auto;
    }
    
    .footer-links-horizontal {
        justify-content: space-between;
    }
    
    .footer-contact-horizontal {
        flex: 1;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .contact-info-horizontal {
        align-items: center;
    }
    
    .footer-section h3 {
        text-align: center;
    }
    
    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
        right: auto;
    }
    
    .horizontal-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 40px 0 20px;
    }
    
    .footer-links-horizontal {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
    
    .footer-section {
        width: 100%;
        text-align: center;
    }
    
    .horizontal-links {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .horizontal-links li a {
        padding: 5px 10px;
    }
}

/* قسم معلومات IPTV في قطر */
.qatar-iptv-info {
    background-color: var(--qatar-light);
    padding: 70px 0;
    position: relative;
}

.qatar-iptv-info::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/qatar-pattern.png');
    background-size: 200px;
    opacity: 0.05;
    z-index: 0;
}

.info-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.info-header h2 {
    color: var(--qatar-primary);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.info-header h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--qatar-primary), var(--qatar-accent));
}

.section-subtitle {
    color: var(--qatar-text);
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
}

/* تنسيق البطاقات بشكل أفقي */
.info-cards-horizontal {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.info-card {
    background-color: var(--qatar-secondary);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-right: 4px solid var(--qatar-primary);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}

.info-card:hover {
    transform: translateX(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.info-icon {
    font-size: 30px;
    color: var(--qatar-primary);
    margin-left: 20px;
    background-color: rgba(138, 21, 56, 0.1);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-content {
    flex-grow: 1;
}

.info-content h3 {
    color: var(--qatar-primary);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.info-content p {
    color: var(--qatar-text);
    line-height: 1.7;
    margin: 0;
}

/* تنسيق المميزات بشكل أفقي */
.qatar-features-horizontal {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.feature-item {
    background-color: var(--qatar-gray);
    padding: 10px 15px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background-color: var(--qatar-primary);
    color: white;
}

.feature-item:hover i {
    color: white;
}

.feature-item i {
    color: var(--qatar-primary);
}

.qatar-note {
    background-color: rgba(138, 21, 56, 0.05);
    border-radius: 10px;
    padding: 20px;
    border-right: 4px solid var(--qatar-primary);
    margin-top: 20px;
    position: relative;
    z-index: 1;
}

.qatar-note p {
    margin: 0;
    color: var(--qatar-text);
    line-height: 1.7;
}

.qatar-note strong {
    color: var(--qatar-primary);
}

/* تنسيق الفوتر بشكل أفقي */
.footer-content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
}

.footer-links, .footer-social, .footer-contact {
    flex: 1;
    min-width: 200px;
}

.footer-links ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 15px;
    padding: 0;
    list-style: none;
}

.footer-social ul {
    display: flex;
    flex-direction: row;
    gap: 15px;
    padding: 0;
    list-style: none;
}

/* تعديلات للشاشات المتوسطة */
@media (max-width: 992px) {
    .info-card {
        flex-direction: row;
        align-items: flex-start;
    }
    
    .info-icon {
        margin-left: 20px;
        margin-bottom: 0;
    }
}

/* تعديلات للشاشات المحمولة */
@media (max-width: 768px) {
    .info-card {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .info-icon {
        margin-left: 0;
        margin-bottom: 15px;
    }
    
    .qatar-features-horizontal {
        flex-direction: column;
        align-items: stretch;
    }
    
    .feature-item {
        width: 100%;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-links ul, .footer-social ul {
        flex-direction: column;
        gap: 10px;
    }
    
    .info-header h2 {
        font-size: 26px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
}

/* تنسيقات زر واتساب العائم */
.floating-whatsapp {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 999;
}

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

.floating-whatsapp a:hover {
    background-color: #128C7E;
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.floating-whatsapp i {
    font-size: 24px;
}

.floating-whatsapp span {
    font-weight: 600;
    font-size: 14px;
}

/* تنسيقات للشاشات الصغيرة */
@media (max-width: 768px) {
    .floating-whatsapp a {
        padding: 10px 16px;
    }
    
    .floating-whatsapp span {
        display: none;
    }
    
    .floating-whatsapp i {
        font-size: 28px;
        margin: 0;
    }
    
    .floating-whatsapp a {
        border-radius: 50%;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* تنسيقات قسم معلومات قطر - محدثة */
.country-info-section {
    padding: 70px 0;
    background-color: #f8f9fa;
    direction: rtl;
}

.country-info-section h2 {
    color: #8a1538; /* عنابي من ألوان العلم القطري */
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 700;
}

.country-info-section .section-subtitle {
    color: #444;
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 1.2rem;
}

/* مقدمة قطر */
.iraq-intro {
    margin-bottom: 40px;
    background-color: rgba(0, 0, 0, 0.03);
    padding: 25px;
    border-radius: 10px;
    border-right: 4px solid #8a1538; /* عنابي من ألوان العلم القطري */
}

.iraq-intro p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 0;
    color: #333;
}

.iraq-intro strong {
    color: #8a1538; /* عنابي من ألوان العلم القطري */
    font-weight: 700;
}

/* شبكة معلومات قطر */
.country-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 25px;
    margin-bottom: 40px;
}

.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;
}

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

.info-card h3, .exchange-card h3 {
    background-color: #8a1538; /* عنابي من ألوان العلم القطري */
    color: #fff;
    padding: 15px 20px;
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
    position: relative;
}

.info-card h3:after, .exchange-card h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 20px;
    width: 50px;
    height: 3px;
    background-color: #fff;
}

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

.info-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.info-item:last-child {
    border-bottom: none;
}

.info-item span:first-child {
    font-weight: 600;
    color: #444;
    min-width: 120px;
}

.info-item span:last-child {
    text-align: left;
    color: #666;
}

.info-item strong {
    color: #8a1538; /* عنابي من ألوان العلم القطري */
    font-weight: 600;
}

/* تنسيقات بطاقة أسعار الاشتراكات */
.exchange-content p {
    margin-bottom: 15px;
    color: #555;
}

.exchange-rates {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 15px;
}

.rate-item {
    background: linear-gradient(135deg, #f8f8f8, #fff);
    border: 1px solid #eee;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    transition: all 0.3s ease;
}

.rate-item:hover {
    background: linear-gradient(135deg, #fff, #f8f8f8);
    transform: scale(1.02);
}

.rate-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: #8a1538; /* عنابي من ألوان العلم القطري */
    margin-bottom: 5px;
}

.rate-label {
    font-size: 0.9rem;
    color: #555;
}

.rate-label strong {
    color: #8a1538; /* عنابي من ألوان العلم القطري */
}

.exchange-source {
    font-size: 0.8rem;
    color: #777;
    text-align: center;
    margin-top: 10px;
    font-style: italic;
}

/* تنسيقات بطاقة الصورة */
.image-card {
    position: relative;
    overflow: hidden;
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-card:hover img {
    transform: scale(1.05);
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 15px;
    font-size: 0.9rem;
}

.image-caption strong {
    color: #fff;
    font-weight: 600;
}

/* تنسيقات قسم الحقائق المميزة */
.iraq-facts {
    margin-bottom: 40px;
}

.iraq-facts h3 {
    color: #8a1538; /* عنابي من ألوان العلم القطري */
    font-size: 1.6rem;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.iraq-facts h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background-color: #8a1538; /* عنابي من ألوان العلم القطري */
}

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

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

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

.fact-icon {
    margin-bottom: 15px;
}

.fact-icon i {
    font-size: 2rem;
    color: #8a1538; /* عنابي من ألوان العلم القطري */
    background-color: rgba(138, 21, 56, 0.1); /* عنابي شفاف للخلفية */
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin: 0 auto;
}

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

.fact-text strong {
    color: #8a1538; /* عنابي من ألوان العلم القطري */
    font-weight: 600;
}

/* تنسيقات قسم مقارنة القنوات */
.media-comparison {
    margin-bottom: 20px;
}

.media-comparison h3 {
    color: #8a1538; /* عنابي من ألوان العلم القطري */
    font-size: 1.6rem;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.media-comparison h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background-color: #8a1538; /* عنابي من ألوان العلم القطري */
}

.comparison-table {
    overflow-x: auto;
    margin-bottom: 20px;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

.comparison-table th {
    background-color: #8a1538; /* عنابي من ألوان العلم القطري */
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
}

.comparison-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

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

.success-icon {
    color: #8a1538; /* عنابي من ألوان العلم القطري */
    font-size: 1.2rem;
}

.media-note {
    text-align: center;
    color: #666;
    font-size: 0.95rem;
    padding: 10px;
    background-color: #f8f8f8;
    border-radius: 5px;
}

.media-note strong {
    color: #8a1538; /* عنابي من ألوان العلم القطري */
    font-weight: 600;
}

/* تنسيقات متجاوبة */
@media (max-width: 992px) {
    .country-info-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .exchange-card {
        grid-column: span 2;
    }
    
    .facts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .country-info-section h2 {
        font-size: 2rem;
    }
    
    .country-info-grid {
        grid-template-columns: 1fr;
    }
    
    .exchange-card {
        grid-column: auto;
    }
    
    .exchange-rates {
        grid-template-columns: 1fr;
    }
    
    .facts-grid {
        grid-template-columns: 1fr;
    }
    
    .info-item {
        flex-direction: column;
    }
    
    .info-item span:first-child {
        margin-bottom: 5px;
    }
    
    .info-item span:last-child {
        text-align: right;
    }
}
