/* --- Global Variables & Base Styles --- */
:root {
    /* --- تعديلات عراق سايت --- */
    --font-heading: 'Tajawal', sans-serif; /* تم تغيير الخط ليكون أكثر حداثة وتقنية */
    --font-body: 'Tajawal', sans-serif;
    --color-bg: #ffffff;
    --color-bg-alt: #f4f8ff; /* لون خلفية بديل مائل للزرقة */
    --color-text: #333;
    --color-primary: #007BFF; /* تم تغيير اللون الأساسي إلى أزرق احترافي */
    --color-primary-dark: #0056b3;
    --color-dark: #1a1a1a;
    --nav-height: 80px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    overflow-x: hidden;
    font-weight: 400; /* وزن الخط الأساسي */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--color-primary);
    border-radius: 2px;
}

/* --- Preloader --- */
.preloader {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: var(--color-bg);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-logo {
    font-size: 4rem;
    font-weight: 700;
    color: var(--color-primary);
}


/* --- Header & Navbar --- */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.4s ease, box-shadow 0.4s ease;
}
.navbar {
    height: var(--nav-height);
    transition: all 0.4s ease;
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}
.nav-brand {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    z-index: 1001;
}
.nav-menu {
    display: flex;
    list-style: none;
    margin: 0; padding: 0;
    gap: 2.5rem;
}
.nav-menu a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}
.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: width 0.3s ease;
}
.nav-menu a:hover { color: white; }
.nav-menu a:hover::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 1rem; }
.nav-contact-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    font-weight: 500;
}
.nav-contact-btn:hover { background: white; color: var(--color-dark); }
.burger-menu {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 1001;
}

/* Scrolled Navbar Style */
#main-header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
#main-header.scrolled .nav-brand,
#main-header.scrolled .nav-menu a,
#main-header.scrolled .burger-menu { color: var(--color-dark); }
#main-header.scrolled .nav-contact-btn {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
}
#main-header.scrolled .nav-contact-btn:hover {
    background-color: var(--color-primary-dark);
}

/* --- Mobile Navigation --- */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100%;
    background-color: var(--color-dark);
    z-index: 1002;
    transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    padding: 100px 40px;
    display: flex;
    flex-direction: column;
}
.mobile-nav.active { right: 0; }
.mobile-nav ul { list-style: none; padding: 0; margin: 0; }
.mobile-nav ul li { margin-bottom: 2rem; }
.mobile-nav ul a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    transition: color 0.3s ease;
}
.mobile-nav ul a:hover { color: var(--color-primary); }
.close-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
}


/* --- Hero Section --- */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    overflow: hidden;
}
.hero-background-image {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    animation: zoom-out 20s linear infinite alternate;
}
@keyframes zoom-out {
    0% { transform: scale(1.1); }
    100% { transform: scale(1); }
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(10, 25, 47, 0.7); /* لون أزرق داكن شفاف */
}
.hero-content {
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(30px);
    animation: hero-fade-in 1s 0.5s forwards;
}
@keyframes hero-fade-in { to { opacity: 1; transform: translateY(0); } }

.main-heading {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 800;
    margin: 0 0 1rem;
    text-shadow: 0 2px 15px rgba(0,0,0,0.5);
}
.sub-heading {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 10px rgba(0,0,0,0.5);
}
.hero-buttons { display: flex; justify-content: center; gap: 1rem; }
.btn {
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    font-size: 1rem;
}
.btn-primary { background-color: var(--color-primary); color: white; }
.btn-primary:hover { background-color: var(--color-primary-dark); transform: translateY(-3px); box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3); }
.btn-secondary { background-color: transparent; color: white; border: 2px solid white; }
.btn-secondary:hover { background-color: white; color: var(--color-dark); transform: translateY(-3px); }


/* --- Scroll Animation Base Styles --- */
.feature-card, .gallery-item, .faq-item, .testimonial-slide {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.feature-card.in-view, .gallery-item.in-view, .faq-item.in-view, .testimonial-slide.in-view {
    opacity: 1;
    transform: translateY(0);
}
.features-grid .feature-card:nth-child(1) { transition-delay: 0.1s; }
.features-grid .feature-card:nth-child(2) { transition-delay: 0.2s; }
.features-grid .feature-card:nth-child(3) { transition-delay: 0.3s; }
.features-grid .feature-card:nth-child(4) { transition-delay: 0.1s; }
.features-grid .feature-card:nth-child(5) { transition-delay: 0.2s; }
.features-grid .feature-card:nth-child(6) { transition-delay: 0.3s; }

/* --- Features/Services Section --- */
.features-section { background-color: var(--color-bg-alt); }
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.feature-card {
    background-color: white;
    padding: 2.5rem;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.6s ease-out, transform 0.6s ease-out;
    display: flex;
    flex-direction: column;
}
.feature-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.07); }
.feature-icon {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}
.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem; margin: 0 0 1rem;
    font-weight: 700;
}
.feature-card p { flex-grow: 1; line-height: 1.7; color: #555; }
/* --- تعديلات عراق سايت: تنسيق رابط الفيديو --- */
.video-link {
    margin-top: 1.5rem;
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}
.video-link:hover {
    color: var(--color-primary-dark);
}
.video-link .fa-youtube {
    margin-right: 8px;
    color: #FF0000;
}

/* --- Gallery Section --- */
.gallery-section { background-color: var(--color-bg); }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 280px;
    gap: 1.5rem;
}
.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

/* --- Testimonials Section --- */
/* --- Testimonials Section (FIXED) --- */
.testimonials-section { 
    background: var(--color-bg-alt); 
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 350px; /* استخدام min-height بدل height لمرونة أكبر */
}

.testimonial-slide {
    /* كل الشرائح تكون فوق بعضها البعض ولكن شفافة */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    /* لمنع التفاعل مع الشرائح المخفية */
    pointer-events: none; 
}

.testimonial-slide.active {
    /* الشريحة الفعالة فقط هي التي تظهر */
    opacity: 1;
    position: relative; /* لجعلها تأخذ حيزها الطبيعي وتحديد ارتفاع الحاوية */
    pointer-events: auto;
}

.testimonial-slide img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 0 5px white, 0 5px 10px rgba(0,0,0,0.1);
}

.testimonial-slide p {
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    min-height: 80px; /* ارتفاع أدنى للنص لتوحيد الشكل */
}

.testimonial-slide h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--color-primary);
    font-weight: 700;
}

.testimonial-navigation {
    /* تم وضعها خارج الحاوية الرئيسية لتجنب التداخل */
    margin-top: 2rem; 
    text-align: center;
}

.testimonial-navigation button {
    background: transparent;
    border: 1px solid #ddd;
    color: #999;
    width: 45px; /* تكبير بسيط للزر */
    height: 45px;
    border-radius: 50%;
    margin: 0 8px; /* زيادة المسافة */
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-navigation button:hover { 
    background: var(--color-primary); 
    color: white; 
    border-color: var(--color-primary); 
}
/* --- FAQ Section --- */
.faq-section { background-color: var(--color-bg); }
.faq-accordion { max-width: 800px; margin: 0 auto; }
.faq-item {
    background: white;
    border-bottom: 1px solid #eee;
}
.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    text-align: right;
    padding: 1.5rem;
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-question::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    transition: transform 0.3s ease;
}
.faq-item.active .faq-question::after { transform: rotate(180deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
}
.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    margin: 0;
    line-height: 1.8;
    color: #555;
}

/* --- Footer --- */
.site-footer {
    background-color: var(--color-dark);
    color: rgba(255,255,255,0.7);
    padding-top: 5rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}
.footer-grid h3 {
    font-family: var(--font-heading);
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}
.footer-about p, .footer-contact p { line-height: 1.8; }
.footer-contact p a { color: rgba(255,255,255,0.7); text-decoration: none; transition: color 0.3s ease;}
.footer-contact p a:hover { color: var(--color-primary); }
.footer-contact p i { margin-left: 10px; color: var(--color-primary); }
.footer-social a {
    display: block;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}
.footer-social a:hover { color: var(--color-primary); }
.copyright {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
}

/* --- تعديلات عراق سايت: أيقونة واتساب العائمة --- */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}
.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
}

/* --- تعديلات عراق سايت: نافذة الفيديو --- */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10001;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.video-modal.active {
    opacity: 1;
    visibility: visible;
}
.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    aspect-ratio: 16 / 9;
}
.video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    font-weight: 300;
}
.video-modal-content iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 5px;
}


/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .nav-menu, .nav-contact-btn { display: none; }
    .burger-menu { display: block; }
}

@media (max-width: 768px) {
    .main-heading { font-size: 2.8rem; }
    .sub-heading { font-size: 1.1rem; }
    .section-title h2 { font-size: 2rem; }
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }
    .gallery-item.tall, .gallery-item.wide {
        grid-row: auto;
        grid-column: auto;
    }
    .footer-grid { text-align: center; }
    .footer-contact p i { margin-left: 5px; margin-right: 5px;}
}





/* --- تعديلات عراق سايت: تنسيقات صفحة الأسعار --- */

/* Pricing Section */
.pricing-section {
    background-color: var(--color-bg);
}

.pricing-section .container, .other-services-section .container {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.pricing-grid, .pricing-grid-other {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    align-items: stretch; /* Makes cards of same height */
}

.pricing-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 15px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.pricing-card.highlighted {
    border: 2px solid var(--color-primary);
    transform: scale(1.05);
    position: relative;
    overflow: hidden;
}
.highlight-badge {
    position: absolute;
    top: 15px;
    right: -35px;
    background: var(--color-primary);
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.9rem;
    font-weight: 700;
}


.pricing-header h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-primary);
    margin: 1rem 0 0.5rem;
}

.price span {
    font-size: 1.5rem;
    font-weight: 500;
}

.price-note {
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: right;
    flex-grow: 1; /* Pushes button to bottom */
}

.features-list li {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.features-list li i {
    margin-left: 10px;
    color: var(--color-primary);
}
.features-list li i.fa-times {
    color: #aaa;
}
.features-list li strong {
    color: var(--color-primary-dark);
}

.renewal-note {
    margin-top: 1rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: #555;
}

.pricing-card .btn {
    width: 100%;
}

/* Other Services Section */
.other-services-section {
    background-color: var(--color-bg-alt);
}
.other-service-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.other-service-icon {
    font-size: 3rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}
.other-service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
}
.other-service-card .price {
    font-size: 2.5rem;
    margin: 0.5rem 0;
}
.other-service-card .price span {
    font-size: 1rem;
}
.service-description {
    color: #666;
    line-height: 1.7;
    margin-top: 1rem;
}










/* --- تعديلات عراق سايت: قسم العملاء --- */

.clients-section {
    background-color: var(--color-bg); /* أو var(--color-bg-alt) إذا أردت خلفية مختلفة */
}

.clients-section .container {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    align-items: center;
}

.client-logo {
    text-align: center;
}

.client-logo img {
    max-width: 120px;
    height: auto;
    filter: grayscale(100%); /* لجعل الشعار رماديًا */
    opacity: 0.7;
    transition: all 0.4s ease;
}

.client-logo a:hover img {
    filter: grayscale(0%); /* إرجاع اللون الأصلي عند التحويم */
    opacity: 1;
    transform: scale(1.1);
}






/* --- تعديلات عراق سايت: تنسيقات صفحة "من نحن" --- */

/* About Section */
.about-section {
    background-color: var(--color-bg);
}
.about-section .container, .mission-vision-section .container {
    padding-top: 5rem;
    padding-bottom: 5rem;
}
.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    align-items: center;
}
.about-grid.reverse {
    direction: ltr; /* لعكس ترتيب الأعمدة */
}
.about-grid.reverse .about-content {
    direction: rtl;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.about-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 1rem;
}

/* Mission & Vision Section */
.mission-vision-section {
    background-color: var(--color-bg-alt);
}
.vision-mission-item {
    margin-bottom: 2rem;
}
.vision-mission-item h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}
.vision-mission-item h4 i {
    color: var(--color-primary);
    margin-left: 10px;
}
.vision-mission-item p {
    padding-right: 28px;
    border-right: 3px solid var(--color-primary);
}


/* Founder Section */
.founder-section {
    background-color: var(--color-bg);
}
.founder-section .container {
    padding-top: 5rem;
    padding-bottom: 5rem;
}
.founder-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}
.founder-photo img {
    width: 100%;
    border-radius: 50%;
    border: 8px solid white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.founder-bio h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
}
.founder-bio h4 {
    color: var(--color-primary);
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: -0.5rem;
    margin-bottom: 1.5rem;
}
.founder-bio p {
    line-height: 1.8;
    color: #555;
}
.founder-social {
    margin-top: 1.5rem;
}
.founder-social a {
    color: #333;
    font-size: 1.5rem;
    margin-left: 1rem;
    transition: color 0.3s ease;
}
.founder-social a:hover {
    color: var(--color-primary);
}

/* Responsive for About Page */
@media (max-width: 992px) {
    .about-grid, .about-grid.reverse, .founder-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .about-image {
        margin-bottom: 2rem;
    }
    .section-title {
        text-align: center !important;
    }
    .vision-mission-item p {
        padding-right: 0;
        border-right: none;
        text-align: center;
    }
     .vision-mission-item h4 {
        justify-content: center;
     }
    .founder-photo {
        width: 200px;
        margin: 0 auto 2rem;
    }
}






















/* --- تعديلات عراق سايت: تنسيق زر تفاصيل الخدمة --- */
.feature-card .btn-details {
    margin-top: 1.5rem;
    background-color: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.feature-card .btn-details:hover {
    background-color: var(--color-primary);
    color: white;
    transform: translateY(-3px);
}













/* --- تعديلات عراق سايت: تنسيقات صفحة الخدمة المفصلة --- */

/* Service Offerings Section */
.offerings-section .container {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.offering-block {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}
.offering-block.reverse {
    direction: ltr;
}
.offering-block.reverse .offering-content {
    direction: rtl;
}

.offering-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.offering-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.offering-content p {
    line-height: 1.8;
    color: #555;
    font-size: 1.1rem;
}
.offering-types {
    margin-top: 2rem;
    border-top: 1px solid #eee;
    padding-top: 2rem;
}
.type-item {
    margin-bottom: 1.5rem;
}
.type-item h4 {
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 700;
}
.type-item h4 i {
    margin-left: 10px;
    color: var(--color-primary);
}
.type-item p {
    font-size: 1rem;
    padding-right: 28px;
    color: #666;
}

.offering-features {
    list-style: none;
    padding: 0;
    margin-top: 2rem;
}
.offering-features li {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}
.offering-features li i {
    color: var(--color-primary);
    margin-left: 10px;
}

/* Custom Development Section */
.custom-dev-section {
    background: var(--color-dark);
    color: white;
    padding: 5rem 0;
    border-radius: 20px;
    margin-top: 4rem;
}
.custom-dev-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}
.custom-dev-icon {
    font-size: 3.5rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}
.custom-dev-content h2 {
    font-family: var(--font-heading);
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.custom-dev-content p {
    color: rgba(255,255,255,0.8);
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Responsive adjustments for offering blocks */
@media (max-width: 768px) {
    .offering-block, .offering-block.reverse {
        text-align: center;
    }
    .offering-content h2 {
        font-size: 2rem;
    }
    .type-item h4 {
        justify-content: center;
    }
    .type-item p {
        padding-right: 0;
    }
    .offering-features li {
        justify-content: center;
    }
}