/* ==================== تحميل الخطوط محلياً ==================== */
@font-face {
    font-family: 'Tajawal';
    src: url('fonts/Tajawal-Regular.woff2') format('woff2');
    font-weight: 400;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: 'Tajawal';
    src: url('fonts/Tajawal-Medium.woff2') format('woff2');
    font-weight: 500;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: 'Tajawal';
    src: url('fonts/Tajawal-Bold.woff2') format('woff2');
    font-weight: 700;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: 'Tajawal';
    src: url('fonts/Tajawal-ExtraBold.woff2') format('woff2');
    font-weight: 800;
    font-display: swap;
    font-style: normal;
}

/* ==================== المتغيرات والإعدادات الأساسية ==================== */
:root {
    --primary: #1B5E20;
    --primary-light: #2E7D32;
    --primary-dark: #0D3B0F;
    --secondary: #D4A017;
    --secondary-light: #F0C040;
    --bg: #FFFFFF;
    --bg-light: #F5F5F5;
    --bg-dark: #1A1A1A;
    --text: #1A1A1A;
    --text-light: #666666;
    --text-white: #FFFFFF;
    --whatsapp: #25D366;
    --call: #007AFF;
    --email: #EA4335;
    --shadow: 0 2px 15px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --radius: 16px;
    --radius-sm: 8px;
    --transition: 0.3s ease;
    --transition-slow: 0.5s ease;
    --max-width: 1200px;
}

/* ==================== إعادة ضبط ==================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Tajawal', sans-serif;
    color: var(--text);
    background-color: var(--bg);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

/* ==================== شريط التنقل ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
    height: 70px;
}

.navbar.scrolled {
    box-shadow: var(--shadow);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

/* الشعار */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    border-radius: 8px;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    position: relative;
}

.logo-icon .fa-shield-halved {
    position: absolute;
    bottom: -3px;
    right: -3px;
    font-size: 14px;
    color: var(--secondary);
    background: white;
    border-radius: 50%;
    padding: 2px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1.2;
}

.logo-sub {
    font-size: 12px;
    color: var(--text-light);
}

/* القائمة */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link {
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 500;
    font-size: 15px;
    color: var(--text);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    background: rgba(27,94,32,0.08);
}

.nav-link.active {
    font-weight: 700;
}

/* رقم الهاتف */
.nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
    transition: var(--transition);
}

.nav-phone:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.nav-phone i {
    animation: ring 2s infinite;
}

@keyframes ring {
    0%, 100% { transform: rotate(0); }
    10% { transform: rotate(15deg); }
    20% { transform: rotate(-15deg); }
    30% { transform: rotate(10deg); }
    40% { transform: rotate(-10deg); }
    50% { transform: rotate(0); }
}

/* زر الهامبرغر */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2.5px;
    background: var(--text);
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ==================== القسم الترحيبي ==================== */
.hero {
    position: relative;
    min-height: 100vh;
    background-color: var(--primary-dark);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url('../images/hero-bg.webp'), url('../images/hero-bg.jpg');
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13,59,15,0.92) 0%, rgba(27,94,32,0.85) 40%, rgba(26,92,26,0.8) 100%);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(255,255,255,0.03) 40px, rgba(255,255,255,0.03) 41px),
        repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(255,255,255,0.03) 40px, rgba(255,255,255,0.03) 41px);
    pointer-events: none;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212,160,23,0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-white);
    max-width: 800px;
    padding-top: 40px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    margin-bottom: 20px;
    backdrop-filter: blur(5px);
}

.hero-title {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 20px;
}

.text-gold {
    color: var(--secondary-light);
}

.hero-desc {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: var(--secondary);
    color: var(--text);
}

.btn-primary:hover {
    background: var(--secondary-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212,160,23,0.4);
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: white;
}

.btn-whatsapp:hover {
    background: #1ebe57;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37,211,102,0.4);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.btn-white {
    background: white;
    color: var(--primary);
}

.btn-white:hover {
    background: var(--bg-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,255,255,0.3);
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 60px;
}

/* ==================== قسم الخدمات ==================== */
.services {
    background: var(--bg);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    display: inline-block;
    color: var(--secondary);
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    position: relative;
    padding: 0 20px;
}

.section-subtitle::before,
.section-subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 2px;
    background: var(--secondary);
}

.section-subtitle::before { right: -20px; }
.section-subtitle::after { left: -20px; }

.section-title {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--text);
}

.section-title span {
    color: var(--primary);
    position: relative;
}

.section-title span::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(27,94,32,0.15);
    border-radius: 4px;
}

.section-desc {
    color: var(--text-light);
    font-size: 16px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.service-card {
    background: var(--bg);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition-slow);
    display: flex;
    flex-direction: column;
    will-change: transform;
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

/* ==================== تجاوب الجوال ==================== */

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* في الجوال: تخطيط أفقي - صورة جانبية + نص */
    .service-card {
        flex-direction: row;
        align-items: stretch;
    }
    
    .service-img-wrapper.ratio-3-4 {
        width: 120px;
        min-width: 120px;
        padding-top: 0;
        height: auto;
    }
    
    .service-img {
        position: relative;
        height: 100%;
        min-height: 160px; /* 120 × 1.333 = 160 */
    }
    
    .service-card-body {
        padding: 15px;
        flex: 1;
    }
    
    .service-card-body h3 {
        font-size: 17px;
    }
    
    .service-card-body p {
        font-size: 13px;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    /* في الشاشات الصغيرة جداً: تخطيط عمودي */
    .service-card {
        flex-direction: column;
    }
    
    .service-img-wrapper.ratio-3-4 {
        width: 100%;
        padding-top: 100%; /* مربع في الصغير جداً */
        position: relative;
    }
    
    .service-img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    
    .service-card-body {
        padding: 18px 15px;
    }
}

.service-card-body {
    padding: 25px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card-body h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text);
}

.service-card-body p {
    color: var(--text-light);
    font-size: 15px;
    margin-bottom: 15px;
    line-height: 1.7;
    flex: 1;
}

.service-link {
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
    margin-top: auto;
}

.service-link:hover {
    gap: 10px;
    color: var(--primary-dark);
}

/* ==================== قسم المميزات ==================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.feature-card {
    text-align: center;
    padding: 35px 25px;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: rgba(27,94,32,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--primary);
    margin: 0 auto 20px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--primary);
    color: white;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-light);
    font-size: 15px;
}

/* ==================== معرض السلايدر ==================== */
.gallery-swiper {
    padding: 20px 0 50px;
}

.gallery-slide {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    background: #f0f0f0;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-slide:hover img {
    transform: scale(1.05);
}

.gallery-fallback {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(27,94,32,0.1), rgba(212,160,23,0.1));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--primary);
}

.gallery-fallback span {
    font-size: 16px;
    margin-top: 10px;
}

.gallery-slide-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-slide:hover .gallery-slide-info {
    transform: translateY(0);
}

.gallery-slide-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.gallery-slide-info p {
    font-size: 14px;
    opacity: 0.8;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary) !important;
    background: white;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50%;
    box-shadow: var(--shadow);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 16px !important;
    font-weight: bold;
}

.swiper-pagination-bullet-active {
    background: var(--primary) !important;
}

/* ==================== قسم CTA ==================== */
.cta {
    color: white;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary)) !important;
}

.cta h2 {
    font-size: clamp(24px, 4vw, 34px);
    font-weight: 800;
    margin-bottom: 15px;
}

.cta p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.cta-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==================== التذييل ==================== */
.footer {
    background: var(--bg-dark);
    color: rgba(255,255,255,0.7);
    padding: 50px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-col h4 {
    color: white;
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary);
    border-radius: 2px;
}

.footer-col p {
    line-height: 1.8;
    font-size: 14px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    transition: var(--transition);
    font-size: 14px;
}

.footer-col ul li a:hover {
    color: var(--secondary-light);
    padding-right: 5px;
}

.footer-contact a {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--secondary-light);
}

.footer-logo-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 15px;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    font-size: 14px;
}

/* ==================== أيقونات الاتصال العائمة ==================== */
.floating-contact {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.floating-toggle {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 22px;
    box-shadow: 0 5px 20px rgba(27,94,32,0.4);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    position: relative;
}

.floating-toggle:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.floating-toggle::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--primary);
    animation: pulse 2s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.6); opacity: 0; }
}

.floating-options {
    display: flex;
    flex-direction: column-reverse;
    gap: 12px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: var(--transition-slow);
}

.floating-options.active {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.floating-option {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.floating-option:hover {
    transform: scale(1.1);
}

.whatsapp-option { background: var(--whatsapp); }
.call-option { background: var(--call); }
.email-option { background: var(--email); }

.option-tooltip {
    position: absolute;
    left: 60px;
    background: var(--bg-dark);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.floating-option:hover .option-tooltip {
    opacity: 1;
    left: 65px;
}

/* ==================== أدوات مساعدة ==================== */
.text-center { text-align: center; }
.mt-30 { margin-top: 30px; }
.bg-light { background-color: var(--bg-light); }

/* ==================== تحسين إمكانية الوصول ==================== */
:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
    border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

@media print {
    .navbar, .floating-contact, .footer, .hero-wave, .hamburger {
        display: none !important;
    }
    body { font-size: 14px; color: black; }
}

/* ==================== تجاوب الجوال ==================== */
@media (max-width: 992px) {
    .hamburger { display: flex; }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        padding: 30px;
        transition: 0.3s ease;
        gap: 10px;
        z-index: 999;
        overflow-y: auto;
    }
    
    .nav-menu.active { left: 0; }
    
    .nav-link {
        width: 100%;
        text-align: center;
        padding: 12px;
        font-size: 16px;
    }
    
    .nav-phone { display: none; }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero { min-height: 90vh; }
    
    .hero-btns {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        flex-direction: row;
        align-items: stretch;
    }
    
    .service-img-wrapper {
        width: 120px;
        min-width: 120px;
        padding-top: 0;
        height: auto;
    }
    
    .service-img {
        position: relative;
        height: 100%;
        min-height: 120px;
    }
    
    .service-card-body {
        padding: 15px;
        flex: 1;
    }
    
    .service-card-body h3 { font-size: 17px; }
    .service-card-body p { font-size: 13px; margin-bottom: 10px; }
    
    .floating-contact {
        bottom: 20px;
        left: 20px;
    }
    
    .floating-toggle {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
    
    .floating-option {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
    
    .section-padding { padding: 50px 0; }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-col h4::after {
        right: 50%;
        transform: translateX(50%);
    }
    
    .footer-contact a { justify-content: center; }
}

@media (max-width: 480px) {
    .service-card { flex-direction: column; }
    
    .service-img-wrapper {
        width: 100%;
        padding-top: 60%;
        position: relative;
    }
    
    .service-img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    
    .service-card-body { padding: 18px 15px; }
}
/* ==================== تجاوب الجوال ==================== */

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* في الجوال: تخطيط أفقي - صورة جانبية + نص */
    .service-card {
        flex-direction: row;
        align-items: stretch;
    }
    
    .service-img-wrapper.ratio-3-4 {
        width: 120px;
        min-width: 120px;
        padding-top: 0;
        height: auto;
    }
    
    .service-img {
        position: relative;
        height: 100%;
        min-height: 160px; /* 120 × 1.333 = 160 */
    }
    
    .service-card-body {
        padding: 15px;
        flex: 1;
    }
    
    .service-card-body h3 {
        font-size: 17px;
    }
    
    .service-card-body p {
        font-size: 13px;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    /* في الشاشات الصغيرة جداً: تخطيط عمودي */
    .service-card {
        flex-direction: column;
    }
    
    .service-img-wrapper.ratio-3-4 {
        width: 100%;
        padding-top: 100%; /* مربع في الصغير جداً */
        position: relative;
    }
    
    .service-img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    
    .service-card-body {
        padding: 18px 15px;
    }
    /* ==================== تحسين بطاقات الخدمات على الجوال ==================== */

@media (max-width: 768px) {
    /* إعادة ضبط تخطيط البطاقة */
    .service-card {
        flex-direction: row !important;
        align-items: stretch !important;
        border-radius: 12px !important;
        overflow: hidden;
    }
    
    /* عرض ثابت ومناسب للصورة */
    .service-img-wrapper.ratio-3-4 {
        width: 130px !important;
        min-width: 130px !important;
        max-width: 130px !important;
        padding-top: 0 !important;
        height: auto !important;
        border-radius: 0 12px 12px 0 !important;
    }
    
    /* الصورة تملأ المساحة */
    .service-img {
        position: relative !important;
        width: 100% !important;
        height: 100% !important;
    }
    
    .service-img img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }
    
    /* الأيقونة الاحتياطية */
    .service-img-fallback {
        position: relative !important;
        height: 100% !important;
        min-height: 150px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 35px !important;
        color: var(--primary) !important;
        background: linear-gradient(135deg, rgba(27,94,32,0.08), rgba(212,160,23,0.08)) !important;
        gap: 8px !important;
    }
    
    .service-img-fallback i {
        font-size: 30px !important;
    }
    
    .service-img-fallback span {
        font-size: 11px !important;
        font-weight: 500 !important;
    }
    
    /* تحسين جسم البطاقة */
    .service-card-body {
        padding: 12px 14px !important;
        flex: 1 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
    }
    
    .service-card-body h3 {
        font-size: 15px !important;
        margin-bottom: 4px !important;
    }
    
    .service-card-body p {
        font-size: 12px !important;
        margin-bottom: 8px !important;
        line-height: 1.5 !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
    }
    
    .service-link {
        font-size: 12px !important;
    }
}

@media (max-width: 480px) {
    /* الشاشات الصغيرة جداً - تخطيط عمودي */
    .service-card {
        flex-direction: column !important;
    }
    
    .service-img-wrapper.ratio-3-4 {
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        padding-top: 70% !important; /* نسبة عرض إلى ارتفاع 70% */
        position: relative !important;
        border-radius: 12px 12px 0 0 !important;
    }
    
    .service-img {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
    }
    
    .service-img-fallback {
        position: absolute !important;
        min-height: auto !important;
        height: 100% !important;
    }
    
    .service-card-body {
        padding: 14px 16px !important;
    }
    
    .service-card-body p {
        -webkit-line-clamp: 3 !important;
    }
}
/* ==================== إظهار/إخفاء الصور والأيقونات ==================== */

/* الصور تظهر فقط في سطح المكتب */
.desktop-only {
    display: block;
}

/* الأيقونات تظهر فقط في الجوال */
.mobile-only {
    display: none;
}

/* أيقونة الجوال */
.service-icon-mobile {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 12px;
    background: rgba(27,94,32,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--primary);
    margin: 15px;
}

/* ==================== الجوال ==================== */
@media (max-width: 768px) {
    /* إخفاء الصورة في الجوال */
    .desktop-only {
        display: none !important;
    }
    
    /* إظهار الأيقونة في الجوال */
    .mobile-only {
        display: flex !important;
    }
    
    /* تخطيط أفقي للبطاقة */
    .service-card {
        flex-direction: row !important;
        align-items: center !important;
        padding: 0 !important;
    }
    
    .service-card-body {
        padding: 14px 14px 14px 0 !important;
    }
    
    .service-card-body h3 {
        font-size: 16px !important;
    }
    
    .service-card-body p {
        font-size: 13px !important;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
}
/* ==================== بطاقات الخدمات - بسيط ومضمون ==================== */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-card {
    background: white;
    border: 1px solid #eee;
    border-radius: 16px;
    overflow: hidden;
    transition: 0.3s;
}

.service-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

/* صندوق الصورة */
.service-img-box {
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #f0f0f0;
}

.service-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* جسم البطاقة */
.service-card-body {
    padding: 20px;
}

.service-card-body h3 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1A1A1A;
}

.service-card-body p {
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
    line-height: 1.6;
}

.service-link {
    color: #1B5E20;
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
}

.service-link:hover {
    gap: 10px;
}

/* ==================== الجوال - عمودين ==================== */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==================== الجوال الصغير - عمود واحد ==================== */
@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        display: flex;
        flex-direction: row;
    }
    
    .service-img-box {
        width: 120px;
        min-width: 120px;
        aspect-ratio: auto;
        height: auto;
    }
    
    .service-img-box img {
        height: 100%;
        min-height: 140px;
    }
    
    .service-card-body {
        padding: 12px 14px;
        flex: 1;
    }
    
    .service-card-body h3 {
        font-size: 16px;
    }
    
    .service-card-body p {
        font-size: 12px;
    }
}
/* ==================== زر اكتشف المزيد - تصميم أنيق ==================== */

.service-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px;
    margin-top: 5px;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #1B5E20, #2E7D32);
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 12px rgba(27, 94, 32, 0.2);
    width: fit-content;
}

.service-btn:hover {
    background: linear-gradient(135deg, #0D3B0F, #1B5E20);
    box-shadow: 0 6px 20px rgba(27, 94, 32, 0.35);
    transform: translateY(-2px);
    gap: 12px;
}

.service-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.service-btn:hover i {
    transform: translateX(-3px);
}

/* ==================== ألوان مختلفة لكل خدمة (اختياري) ==================== */

.service-btn.btn-gold {
    background: linear-gradient(135deg, #D4A017, #F0C040);
    color: #1A1A1A;
    box-shadow: 0 4px 12px rgba(212, 160, 23, 0.25);
}

.service-btn.btn-gold:hover {
    background: linear-gradient(135deg, #b8860b, #D4A017);
    box-shadow: 0 6px 20px rgba(212, 160, 23, 0.4);
}

.service-btn.btn-dark {
    background: linear-gradient(135deg, #1a1a2e, #2c2c3e);
    box-shadow: 0 4px 12px rgba(26, 26, 46, 0.25);
}

.service-btn.btn-dark:hover {
    background: linear-gradient(135deg, #0d0d1a, #1a1a2e);
    box-shadow: 0 6px 20px rgba(26, 26, 46, 0.4);
}
/* ==================== صفحة الخدمات - تصميم جديد ==================== */

/* بطاقة تفصيل الخدمة */
.service-detail-card {
    background: white;
    border-radius: var(--radius);
    padding: 0;
    margin-bottom: 35px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0,0,0,0.05);
    overflow: hidden;
    transition: var(--transition);
}

.service-detail-card:hover {
    box-shadow: var(--shadow-lg);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
}

/* صورة الخدمة */
.service-detail-img {
    width: 100%;
    height: 100%;
    min-height: 350px;
    overflow: hidden;
}

.service-detail-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* محتوى الخدمة */
.service-detail-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-content h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--text);
}

.service-detail-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 15px;
}

/* شارة */
.service-detail-badge {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 10px;
    width: fit-content;
}

.badge-gold {
    background: #FFF3CD;
    color: #B8860B;
    border: 1px solid #FFD700;
}

/* قائمة المميزات */
.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    font-size: 14px;
}

.service-features li i {
    color: #27ae60;
    font-size: 16px;
}

/* ==================== الجوال ==================== */
@media (max-width: 768px) {
    .service-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .service-detail-img {
        min-height: 220px;
        max-height: 250px;
    }
    
    .service-detail-content {
        padding: 25px 20px;
    }
    
    .service-detail-content h2 {
        font-size: 22px;
    }
    
    .service-detail-content p {
        font-size: 14px;
    }
    
    .service-features li {
        font-size: 13px;
        padding: 6px 0;
    }
}
/* ==================== صفحة الخدمات - بطاقات الصفوف ==================== */

.svc-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 35px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.svc-row:hover {
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.svc-row.reverse .svc-img {
    order: 2;
}

.svc-row.reverse .svc-text {
    order: 1;
}

/* الصورة */
.svc-img {
    position: relative;
    overflow: hidden;
    min-height: 320px;
    background: #f0f0f0;
}

.svc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.svc-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 14px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 12px;
    z-index: 2;
}

.svc-badge.gold {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
}

.svc-badge.special {
    background: linear-gradient(135deg, #FF6B6B, #FF4757);
    color: #fff;
}

/* النص */
.svc-text {
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.svc-num {
    font-size: 55px;
    font-weight: 900;
    color: rgba(27,94,32,0.06);
    line-height: 1;
    margin-bottom: -5px;
}

.svc-text h2 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #1A1A1A;
}

.svc-text p {
    color: #666;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.svc-text ul {
    list-style: none;
    margin-bottom: 22px;
}

.svc-text ul li {
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #444;
}

.svc-text ul li i {
    color: #27ae60;
    font-size: 15px;
}

/* أزرار */
.svc-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    width: fit-content;
    background: linear-gradient(135deg, #1B5E20, #2E7D32);
    color: #fff;
    box-shadow: 0 4px 15px rgba(27,94,32,0.2);
}

.svc-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(27,94,32,0.35);
    gap: 12px;
}

.svc-btn.gold-btn {
    background: linear-gradient(135deg, #D4A017, #F0C040);
    color: #1A1A1A;
    box-shadow: 0 4px 15px rgba(212,160,23,0.25);
}

.svc-btn.gold-btn:hover {
    box-shadow: 0 6px 20px rgba(212,160,23,0.4);
}

.svc-btn.dark-btn {
    background: linear-gradient(135deg, #1a1a2e, #2c2c3e);
    box-shadow: 0 4px 15px rgba(26,26,46,0.25);
}

.svc-btn.dark-btn:hover {
    box-shadow: 0 6px 20px rgba(26,26,46,0.4);
}

.svc-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.svc-btn:hover i {
    transform: translateX(-5px);
}

/* ==================== تجاوب الجوال ==================== */
@media (max-width: 768px) {
    .svc-row,
    .svc-row.reverse {
        grid-template-columns: 1fr;
    }
    
    .svc-row.reverse .svc-img {
        order: -1;
    }
    
    .svc-row.reverse .svc-text {
        order: 1;
    }
    
    .svc-img {
        min-height: 200px;
        max-height: 250px;
    }
    
    .svc-text {
        padding: 25px 20px;
    }
    
    .svc-text h2 {
        font-size: 22px;
    }
    
    .svc-num {
        font-size: 40px;
    }
}
/* ==================== 🆕 1. TOP BAR ==================== */
.top-bar {
    background: #0D3B0F;
    color: rgba(255,255,255,0.85);
    font-size: 12px;
    padding: 8px 0;
    display: block;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar-info {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.top-bar-info a,
.top-bar-info span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar-info a:hover {
    color: #F0C040;
}

.top-bar-social {
    display: flex;
    gap: 12px;
}

.top-bar-social a {
    font-size: 15px;
    transition: all 0.3s;
    color: rgba(255,255,255,0.7);
}

.top-bar-social a:hover {
    color: #F0C040;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .top-bar { display: none; }
}

/* ==================== 🆕 2. شريط البحث ==================== */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-toggle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(27,94,32,0.1);
    color: #1B5E20;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s;
}

.search-toggle:hover {
    background: #1B5E20;
    color: white;
}

.search-bar {
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    background: white;
    padding: 15px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: top 0.3s ease;
    z-index: 1001;
}

.search-bar.active {
    top: 100%;
}

.search-bar input {
    width: 100%;
    padding: 12px 20px;
    border: 2px solid #eee;
    border-radius: 30px;
    font-family: 'Tajawal', sans-serif;
    font-size: 16px;
}

.search-bar input:focus {
    outline: none;
    border-color: #1B5E20;
}

.search-close {
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: #999;
}

/* ==================== 🆕 3. العداد الإحصائي ==================== */
.counter-section {
    padding: 30px 0;
    margin-top: -20px;
    position: relative;
    z-index: 5;
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
}

.counter-item {
    text-align: center;
    padding: 15px;
}

.counter-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: rgba(27,94,32,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #1B5E20;
    margin: 0 auto 12px;
    transition: all 0.3s;
}

.counter-item:hover .counter-icon {
    background: #1B5E20;
    color: white;
}

.counter-number {
    display: block;
    font-size: 32px;
    font-weight: 900;
    color: #1B5E20;
}

.counter-label {
    font-size: 14px;
    color: #777;
}

@media (max-width: 768px) {
    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 20px;
    }
    .counter-number { font-size: 26px; }
}

/* ==================== 🆕 4. فيديو الخلفية ==================== */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==================== 🆕 5. تقييمات العملاء ==================== */
.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    text-align: center;
}

.testimonial-stars {
    font-size: 20px;
    margin-bottom: 15px;
}

.testimonial-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
}

.testimonial-author i {
    font-size: 40px;
    color: #1B5E20;
}

.testimonial-author strong {
    display: block;
    font-size: 15px;
}

.testimonial-author span {
    font-size: 12px;
    color: #999;
}

/* ==================== 🆕 6. شعارات العملاء ==================== */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

.client-item {
    text-align: center;
    padding: 25px 15px;
    background: white;
    border-radius: 12px;
    border: 1px solid #eee;
    transition: all 0.3s;
}

.client-item:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transform: translateY(-3px);
    border-color: #1B5E20;
}

.client-item i {
    font-size: 30px;
    color: #1B5E20;
    margin-bottom: 8px;
    display: block;
}

.client-item span {
    font-size: 13px;
    color: #666;
    font-weight: 600;
}

@media (max-width: 768px) {
    .clients-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 480px) {
    .clients-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ==================== 🆕 7. سوشيال ميديا في الفوتر ==================== */
.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.footer-social a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: #F0C040;
    color: #000;
    transform: translateY(-3px);
}

/* ==================== 🆕 9. زر الرجوع للأعلى ==================== */
.scroll-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #1B5E20;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 18px;
    box-shadow: 0 5px 15px rgba(27,94,32,0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s;
    z-index: 998;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background: #0D3B0F;
    transform: translateY(-3px);
}

/* ==================== 🆕 Badge على بطاقات الخدمات ==================== */
.service-img-box {
    position: relative;
}

.service-card-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 700;
    z-index: 2;
}

.service-card-badge.gold {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
}

.service-card-badge.special {
    background: linear-gradient(135deg, #FF6B6B, #FF4757);
    color: white;
}

/* ==================== زر Pulse ==================== */
.btn.pulse {
    animation: pulseBtn 2s infinite;
}

@keyframes pulseBtn {
    0% { box-shadow: 0 0 0 0 rgba(212,160,23,0.5); }
    70% { box-shadow: 0 0 0 15px rgba(212,160,23,0); }
    100% { box-shadow: 0 0 0 0 rgba(212,160,23,0); }
}
/* ==================== صفحة الخدمات - الصور كاملة بدون قص ==================== */

.svc-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 35px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.svc-row:hover {
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.svc-row.reverse .svc-img { order: 2; }
.svc-row.reverse .svc-text { order: 1; }

/* ==================== الصورة - كاملة بدون قص ==================== */
.svc-img {
    position: relative;
    overflow: hidden;
    background: #f5f5f5;
}

.svc-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    padding: 0;
    background: #f5f5f5;
}

/* شارة */
.svc-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 12px;
    z-index: 2;
}

.svc-badge.gold {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
}

.svc-badge.special {
    background: linear-gradient(135deg, #FF6B6B, #FF4757);
    color: #fff;
}

/* ==================== النص ==================== */
.svc-text {
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.svc-num {
    font-size: 55px;
    font-weight: 900;
    color: rgba(27,94,32,0.06);
    line-height: 1;
    margin-bottom: -5px;
}

.svc-text h2 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #1A1A1A;
}

.svc-text p {
    color: #666;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.svc-text ul {
    list-style: none;
    margin-bottom: 22px;
}

.svc-text ul li {
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #444;
}

.svc-text ul li i {
    color: #27ae60;
    font-size: 15px;
    flex-shrink: 0;
}

/* ==================== الأزرار ==================== */
.svc-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.svc-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    background: linear-gradient(135deg, #1B5E20, #2E7D32);
    color: #fff;
    box-shadow: 0 4px 15px rgba(27,94,32,0.2);
}

.svc-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(27,94,32,0.35);
    gap: 12px;
}

.svc-btn.gold-btn {
    background: linear-gradient(135deg, #D4A017, #F0C040);
    color: #1A1A1A;
    box-shadow: 0 4px 15px rgba(212,160,23,0.25);
}

.svc-btn.gold-btn:hover {
    box-shadow: 0 6px 20px rgba(212,160,23,0.4);
}

.svc-btn.dark-btn {
    background: linear-gradient(135deg, #1a1a2e, #2c2c3e);
    box-shadow: 0 4px 15px rgba(26,26,46,0.25);
}

.svc-btn i {
    font-size: 12px;
    transition: transform 0.3s;
}

.svc-btn:hover i {
    transform: translateX(-5px);
}

/* أيقونات واتساب واتصال */
.svc-icon-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    border: 2px solid transparent;
}

.svc-icon-btn.call-btn {
    background: #fff;
    color: #007AFF;
    border-color: #007AFF;
}

.svc-icon-btn.call-btn:hover {
    background: #007AFF;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,122,255,0.3);
}

.svc-icon-btn.wa-btn {
    background: #fff;
    color: #25D366;
    border-color: #25D366;
}

.svc-icon-btn.wa-btn:hover {
    background: #25D366;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37,211,102,0.3);
}

.svc-icon-btn i { font-size: 16px; }
.svc-icon-btn span { font-size: 13px; }

/* ==================== تجاوب الجوال ==================== */
@media (max-width: 992px) {
    .svc-row,
    .svc-row.reverse {
        grid-template-columns: 1fr;
    }
    
    .svc-row.reverse .svc-img { order: -1; }
    .svc-row.reverse .svc-text { order: 1; }
    
    .svc-img {
        max-height: 350px;
    }
    
    .svc-img img {
        object-fit: contain;
        max-height: 350px;
    }
    
    .svc-text { padding: 25px 20px; }
    .svc-text h2 { font-size: 22px; }
    .svc-num { font-size: 40px; }
    
    .svc-actions {
        flex-direction: column;
        gap: 8px;
    }
    
    .svc-btn,
    .svc-icon-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .svc-img {
        max-height: 280px;
    }
    
    .svc-img img {
        max-height: 280px;
    }
    
    .svc-text h2 { font-size: 20px; }
    .svc-text p { font-size: 13px; }
    .svc-text ul li { font-size: 12px; }
}
/* ============================================================
   صفحة الخدمات - بطاقات عمودية موحدة وأنيقة
   ============================================================ */

.svc-vertical-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* ==================== بطاقة عمودية ==================== */
.svc-card-vertical {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,0.04);
}

.svc-card-vertical:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    border-color: rgba(27,94,32,0.12);
}

/* ==================== الصورة ==================== */
.svc-card-img {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: #f0f2f0;
}

.svc-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}

.svc-card-vertical:hover .svc-card-img img {
    transform: scale(1.08);
}

/* تأثير تدرج عند hover */
.svc-card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s;
}

.svc-card-vertical:hover .svc-card-img::after {
    opacity: 1;
}

/* شارة */
.svc-card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 12px;
    z-index: 3;
    backdrop-filter: blur(5px);
}

.svc-card-badge.gold {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    box-shadow: 0 4px 12px rgba(255,165,0,0.35);
    animation: badgeShine 2s infinite;
}

.svc-card-badge.special {
    background: linear-gradient(135deg, #FF6B6B, #FF4757);
    color: #fff;
    box-shadow: 0 4px 12px rgba(255,71,87,0.35);
}

@keyframes badgeShine {
    0%, 100% { box-shadow: 0 4px 12px rgba(255,165,0,0.35); }
    50% { box-shadow: 0 4px 22px rgba(255,165,0,0.65); }
}

/* ==================== جسم البطاقة ==================== */
.svc-card-body {
    padding: 24px 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.svc-card-num {
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 50px;
    font-weight: 900;
    color: rgba(27,94,32,0.05);
    line-height: 1;
    pointer-events: none;
}

.svc-card-body h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 8px;
    color: #1A1A1A;
}

.svc-card-body p {
    font-size: 13px;
    color: #777;
    line-height: 1.7;
    margin-bottom: 14px;
}

/* قائمة المميزات */
.svc-card-body ul {
    list-style: none;
    margin-bottom: 18px;
    flex: 1;
}

.svc-card-body ul li {
    padding: 4px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #555;
}

.svc-card-body ul li i {
    color: #27ae60;
    font-size: 13px;
    flex-shrink: 0;
}

/* ==================== الأزرار ==================== */
.svc-card-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid #f0f0f0;
}

.svc-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    background: #1B5E20;
    color: #fff;
    box-shadow: 0 3px 10px rgba(27,94,32,0.18);
}

.svc-btn:hover {
    background: #0D3B0F;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(27,94,32,0.3);
    gap: 10px;
}

.svc-btn.gold-btn {
    background: #D4A017;
    color: #1A1A1A;
    box-shadow: 0 3px 10px rgba(212,160,23,0.22);
}

.svc-btn.gold-btn:hover {
    background: #b8860b;
    box-shadow: 0 6px 18px rgba(212,160,23,0.35);
}

.svc-btn.dark-btn {
    background: #1a1a2e;
    box-shadow: 0 3px 10px rgba(26,26,46,0.22);
}

.svc-btn i {
    font-size: 10px;
    transition: transform 0.3s;
}

.svc-btn:hover i {
    transform: translateX(-4px);
}

/* أيقونات دائرية */
.svc-card-icons {
    display: flex;
    gap: 6px;
}

.svc-card-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #e8e8e8;
    background: white;
    color: #888;
}

.svc-card-icon:hover {
    transform: translateY(-3px);
}

.svc-card-icon.call:hover {
    background: #007AFF;
    color: white;
    border-color: #007AFF;
    box-shadow: 0 4px 12px rgba(0,122,255,0.3);
}

.svc-card-icon.wa:hover {
    background: #25D366;
    color: white;
    border-color: #25D366;
    box-shadow: 0 4px 12px rgba(37,211,102,0.3);
}

/* ==================== تجاوب ==================== */
@media (max-width: 992px) {
    .svc-vertical-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .svc-vertical-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .svc-card-body {
        padding: 18px 16px;
    }
    
    .svc-card-body h3 {
        font-size: 18px;
    }
}
/* ============================================================
   صفحة الخدمات - بطاقات عمودية موحدة وأنيقة
   ============================================================ */

.svc-vertical-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* ==================== بطاقة عمودية ==================== */
.svc-card-vertical {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,0.04);
}

.svc-card-vertical:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    border-color: rgba(27,94,32,0.12);
}

/* ==================== الصورة ==================== */
.svc-card-img {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: #f0f2f0;
}

.svc-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}

.svc-card-vertical:hover .svc-card-img img {
    transform: scale(1.08);
}

/* تأثير تدرج عند hover */
.svc-card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s;
}

.svc-card-vertical:hover .svc-card-img::after {
    opacity: 1;
}

/* شارة */
.svc-card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 12px;
    z-index: 3;
    backdrop-filter: blur(5px);
}

.svc-card-badge.gold {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    box-shadow: 0 4px 12px rgba(255,165,0,0.35);
    animation: badgeShine 2s infinite;
}

.svc-card-badge.special {
    background: linear-gradient(135deg, #FF6B6B, #FF4757);
    color: #fff;
    box-shadow: 0 4px 12px rgba(255,71,87,0.35);
}

@keyframes badgeShine {
    0%, 100% { box-shadow: 0 4px 12px rgba(255,165,0,0.35); }
    50% { box-shadow: 0 4px 22px rgba(255,165,0,0.65); }
}

/* ==================== جسم البطاقة ==================== */
.svc-card-body {
    padding: 24px 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.svc-card-num {
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 50px;
    font-weight: 900;
    color: rgba(27,94,32,0.05);
    line-height: 1;
    pointer-events: none;
}

.svc-card-body h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 8px;
    color: #1A1A1A;
}

.svc-card-body p {
    font-size: 13px;
    color: #777;
    line-height: 1.7;
    margin-bottom: 14px;
}

/* قائمة المميزات */
.svc-card-body ul {
    list-style: none;
    margin-bottom: 18px;
    flex: 1;
}

.svc-card-body ul li {
    padding: 4px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #555;
}

.svc-card-body ul li i {
    color: #27ae60;
    font-size: 13px;
    flex-shrink: 0;
}

/* ==================== الأزرار ==================== */
.svc-card-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid #f0f0f0;
}

.svc-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    background: #25D366;
    color: #fff;
    box-shadow: 0 4px 15px rgba(37,211,102,0.25);
}

.svc-btn:hover {
    background: #1ebe57;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37,211,102,0.4);
}

.svc-btn i {
    font-size: 18px;
}

/* زر الاتصال دائري */
.svc-card-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
    background: white;
    color: #007AFF;
    flex-shrink: 0;
}

.svc-card-icon:hover {
    background: #007AFF;
    color: white;
    border-color: #007AFF;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,122,255,0.3);
}

/* ==================== تجاوب ==================== */
@media (max-width: 992px) {
    .svc-vertical-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .svc-vertical-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .svc-card-body {
        padding: 18px 16px;
    }
    
    .svc-card-body h3 {
        font-size: 18px;
    }
}
/* ==================== الفوتر - تصميم وتسويق ==================== */

.footer-bottom {
    text-align: center;
    padding: 18px 0;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
}

.footer-dev {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-dev a {
    color: #F0C040;
    font-weight: 600;
    transition: all 0.3s;
}

.footer-dev a:hover {
    color: #FFD700;
}

.footer-dev-wa {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(37,211,102,0.15);
    padding: 4px 12px;
    border-radius: 20px;
    color: #25D366 !important;
    font-size: 12px;
    transition: all 0.3s;
}

.footer-dev-wa:hover {
    background: rgba(37,211,102,0.25);
    color: #25D366 !important;
}

.footer-dev-wa i {
    font-size: 14px;
}
/* ============================================================
   صفحة طلب عرض سعر
   ============================================================ */

.quote-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 30px;
    align-items: start;
}

/* ==================== بطاقة المعلومات ==================== */
.quote-info-card {
    background: white;
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    position: sticky;
    top: 90px;
}

.quote-info-icon {
    width: 55px;
    height: 55px;
    border-radius: 14px;
    background: linear-gradient(135deg, #1B5E20, #2E7D32);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 18px;
}

.quote-info-card h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 18px;
    color: #1A1A1A;
}

.quote-info-card ul {
    list-style: none;
    margin-bottom: 25px;
}

.quote-info-card ul li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #555;
}

.quote-info-card ul li i {
    color: #27ae60;
    font-size: 16px;
}

/* أزرار التواصل */
.quote-info-contact {
    border-top: 1px solid #f0f0f0;
    padding-top: 20px;
}

.quote-info-contact h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #333;
}

.quote-contact-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    margin-bottom: 8px;
    transition: all 0.3s;
}

.quote-contact-btn.call {
    background: #f0f5ff;
    color: #007AFF;
}

.quote-contact-btn.call:hover {
    background: #007AFF;
    color: white;
}

.quote-contact-btn.wa {
    background: #f0fff5;
    color: #25D366;
}

.quote-contact-btn.wa:hover {
    background: #25D366;
    color: white;
}

/* ==================== النموذج ==================== */
.quote-form-wrapper {
    background: white;
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
    color: #333;
}

.form-group label span {
    color: #e74c3c;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    font-family: 'Tajawal', sans-serif;
    font-size: 14px;
    transition: all 0.3s;
    background: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1B5E20;
    background: white;
    box-shadow: 0 0 0 4px rgba(27,94,32,0.06);
}

/* رفع الملف */
.file-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 25px;
    border: 2px dashed #ddd;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}

.file-label:hover {
    border-color: #1B5E20;
    background: rgba(27,94,32,0.02);
}

.file-label i {
    font-size: 28px;
    color: #1B5E20;
}

.file-label span {
    font-size: 14px;
    color: #555;
    font-weight: 500;
}

.file-label small {
    font-size: 11px;
    color: #999;
}

.file-name {
    margin-top: 8px;
    font-size: 13px;
    color: #1B5E20;
    font-weight: 500;
}

/* زر الإرسال */
.quote-submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #D4A017, #F0C040);
    color: #1A1A1A;
    border: none;
    border-radius: 30px;
    font-family: 'Tajawal', sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(212,160,23,0.3);
    margin-top: 10px;
}

.quote-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212,160,23,0.4);
    gap: 14px;
}

.form-note {
    text-align: center;
    font-size: 12px;
    color: #999;
    margin-top: 12px;
}

.form-note a {
    color: #1B5E20;
    text-decoration: underline;
}

/* رسالة النجاح */
.form-success {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #e8f5e9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #27ae60;
    margin: 0 auto 20px;
}

.form-success h3 {
    font-size: 22px;
    font-weight: 800;
    color: #1A1A1A;
    margin-bottom: 10px;
}

.form-success p {
    font-size: 15px;
    color: #666;
    margin-bottom: 25px;
}

/* ==================== تجاوب ==================== */
@media (max-width: 992px) {
    .quote-grid {
        grid-template-columns: 1fr;
    }
    
    .quote-info-card {
        position: static;
    }
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .quote-form-wrapper {
        padding: 22px 16px;
    }
    
    .quote-info-card {
        padding: 25px 20px;
    }
}
/* ==================== الفوتر السفلي ==================== */

.footer-bottom {
    text-align: center;
    padding: 20px 0;
}

.footer-bottom > p {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 0;
}

/* خط فاصل */
.footer-divider {
    width: 60px;
    height: 1px;
    background: rgba(255,255,255,0.15);
    margin: 10px auto;
}

/* سطر المصمم - تنسيق واحد */
.footer-dev {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
}

.footer-dev a {
    color: #F0C040;
    font-weight: 600;
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.footer-dev a:hover {
    color: #FFD700;
}

.footer-dev a i {
    font-size: 12px;
}
/* ============================================================
   صفحة اتصل بنا
   ============================================================ */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 30px;
    align-items: start;
}

/* ==================== بطاقات التواصل ==================== */
.contact-cards-col {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-info-card {
    background: white;
    border-radius: 16px;
    padding: 20px 22px;
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.04);
}

.contact-info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.contact-card-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 14px;
    background: rgba(27,94,32,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #1B5E20;
}

.contact-card-icon.wa-icon {
    background: rgba(37,211,102,0.1);
    color: #25D366;
}

.contact-card-icon.email-icon {
    background: rgba(234,67,53,0.08);
    color: #EA4335;
}

.contact-card-icon.loc-icon {
    background: rgba(0,122,255,0.08);
    color: #007AFF;
}

.contact-card-info h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #1A1A1A;
}

.contact-card-info a {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    display: block;
    direction: ltr;
    text-align: right;
    transition: color 0.3s;
}

.contact-card-info a:hover {
    color: #1B5E20;
}

.contact-card-info p {
    font-size: 14px;
    color: #555;
}

.contact-card-info span {
    font-size: 11px;
    color: #999;
    margin-top: 2px;
    display: block;
}

/* سوشيال ميديا */
.contact-social {
    background: white;
    border-radius: 16px;
    padding: 20px 22px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.04);
}

.contact-social h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1A1A1A;
}

.contact-social-links {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.social-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    color: #555;
    transition: all 0.3s;
}

.social-link:hover {
    background: #1B5E20;
    color: white;
    transform: translateY(-3px);
}

.social-link.wa-link:hover {
    background: #25D366;
}

/* ==================== نموذج الاتصال ==================== */
.contact-form-wrapper {
    background: white;
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.04);
}

.contact-form-header {
    margin-bottom: 25px;
    text-align: center;
}

.contact-form-header h3 {
    font-size: 24px;
    font-weight: 800;
    color: #1A1A1A;
    margin-bottom: 6px;
}

.contact-form-header p {
    font-size: 14px;
    color: #888;
}

/* حقول النموذج */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
    color: #333;
}

.form-group label span {
    color: #e74c3c;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    font-family: 'Tajawal', sans-serif;
    font-size: 14px;
    transition: all 0.3s;
    background: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1B5E20;
    background: white;
    box-shadow: 0 0 0 4px rgba(27,94,32,0.06);
}

/* زر الإرسال */
.contact-submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #1B5E20, #2E7D32);
    color: white;
    border: none;
    border-radius: 30px;
    font-family: 'Tajawal', sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(27,94,32,0.25);
}

.contact-submit-btn:hover {
    background: linear-gradient(135deg, #0D3B0F, #1B5E20);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(27,94,32,0.35);
    gap: 14px;
}

/* رسالة النجاح */
.contact-success {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #e8f5e9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #27ae60;
    margin: 0 auto 20px;
}

.contact-success h3 {
    font-size: 22px;
    font-weight: 800;
    color: #1A1A1A;
    margin-bottom: 10px;
}

.contact-success p {
    font-size: 15px;
    color: #666;
}

/* ==================== تجاوب ==================== */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-form-wrapper {
        padding: 22px 16px;
    }
    
    .contact-info-card {
        padding: 15px;
        gap: 12px;
    }
    
    .contact-card-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
        font-size: 17px;
        border-radius: 10px;
    }
}