:root {
    --bg-matte: #f5f7f8; /* أبيض باهت مطفي ومريح جداً للعين */
    --deep-green: #064e3b; /* أخضر غامق جداً ورسمي */
    --deep-green-hover: #022c22;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --border-line: #cbd5e1;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Cairo', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-matte);
    color: var(--text-main);
    line-height: 1.6;
    font-size: 14px;
}

.top-announcement {
    background-color: var(--deep-green);
    color: var(--bg-matte);
    text-align: center;
    padding: 6px 5%;
    font-size: 12px;
    font-weight: 600;
}

header {
    background: var(--white);
    padding: 15px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-line);
}

.logo {
    font-size: 20px;
    font-weight: 800;
    color: var(--deep-green);
}

.contact-top-btn {
    background: transparent;
    border: 1.5px solid var(--deep-green);
    color: var(--deep-green);
    padding: 8px 18px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    transition: 0.2s ease;
}
.contact-top-btn:hover {
    background: var(--deep-green);
    color: var(--bg-matte);
}

.hero-split {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    padding: 60px 8%;
    align-items: center;
    background: var(--white);
    border-bottom: 1px solid var(--border-line);
}

.hero-tag {
    color: var(--deep-green);
    font-weight: 700;
    font-size: 13px;
    display: inline-block;
    margin-bottom: 10px;
}

.hero-split h1 {
    font-size: 26px;
    font-weight: 800;
    color: var(--deep-green);
    line-height: 1.4;
    margin-bottom: 15px;
}

.hero-split p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 25px;
    max-width: 500px;
}

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.action-btn {
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
    transition: 0.2s;
    cursor: pointer;
}
.btn-solid { background-color: var(--deep-green); color: var(--bg-matte); }
.btn-solid:hover { background-color: var(--deep-green-hover); }
.btn-outline { border: 1px solid var(--border-line); color: var(--text-main); background: var(--bg-matte); }

.hero-images-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.hero-images-grid img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid var(--border-line);
    transition: transform 0.3s ease;
}
.hero-images-grid img:hover {
    transform: scale(1.02);
}
.hero-images-grid img.tall {
    grid-row: span 2;
    height: 292px;
}

section {
    padding: 60px 8%;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 22px;
    color: var(--deep-green);
    font-weight: 800;
}

.services-rows {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.service-row-item {
    background: var(--white);
    border: 1px solid var(--border-line);
    border-radius: 8px;
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-row-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.service-row-img {
    flex: 1 1 250px;
    max-height: 220px;
    object-fit: cover;
}

.service-row-text {
    flex: 2 2 350px;
    padding: 25px;
}

.service-row-text h3 {
    font-size: 18px;
    color: var(--deep-green);
    margin-bottom: 10px;
}

.service-row-text p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 15px;
}

/* جدول الأسعار النظيف والمطابق لطلبك بالظبط */
.table-scroll-box {
    overflow-x: auto;
    border: 1px solid var(--border-line);
    border-radius: 8px;
    background: var(--white);
}

.pricing-table-giant {
    width: 100%;
    border-collapse: collapse;
    text-align: right;
    min-width: 600px;
    font-size: 14px;
}

.pricing-table-giant th {
    background-color: var(--deep-green);
    color: var(--bg-matte);
    padding: 15px;
    font-weight: 700;
}

.pricing-table-giant td {
    padding: 14px 15px;
    border-bottom: 1px solid var(--border-line);
}

.pricing-table-giant tr:last-child td { border-bottom: none; }
.pricing-table-giant tr:nth-child(even) { background-color: var(--bg-matte); }
.pricing-table-giant tr:hover { background-color: rgba(6, 78, 59, 0.03); }

.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
}

.gallery-photo-wrapper {
    border-radius: 6px;
    overflow: hidden;
    height: 150px;
    border: 1px solid var(--border-line);
}

.gallery-photo-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sticky-action-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    border-top: 1px solid var(--border-line);
    padding: 12px 8%;
    display: flex;
    gap: 12px;
    z-index: 1000;
}

.sticky-bar-btn {
    flex: 1;
    text-align: center;
    padding: 12px 0;
    border-radius: 4px;
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
}
.bar-wa { background-color: #16a34a; color: white; }
.bar-call { background-color: var(--deep-green); color: var(--bg-matte); }

.bottom-padding { height: 80px; }

footer {
    background: #1e293b;
    color: #94a3b8;
    padding: 40px 8% 20px 8%;
    text-align: center;
    font-size: 13px;
    border-top: 1px solid var(--border-line);
}
footer p { margin-bottom: 12px; }

.article-box {
    text-align: justify;
    margin-bottom: 25px;
    font-size: 13px;
    line-height: 1.8;
    color: #94a3b8;
    border-top: 1px solid #334155;
    padding-top: 20px;
}

.seo-tags-container {
    font-size: 10.5px;
    color: #576574;
    text-align: justify;
    border-top: 1px solid #334155;
    padding-top: 15px;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .hero-split { grid-template-columns: 1fr; padding: 40px 5%; }
    section { padding: 40px 5%; }
    .sticky-action-bar { padding: 10px 5%; }
}
