/* ===========================
   Dahab Arabic Styles (RTL)
   =========================== */
/* @import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;500;600;700;800&display=swap'); */

:root {
    --primary-color: #3d8a68;
    --secondary-color: #d4c291;
    /* Goldish accent */
    --text-color: #333333;
    --text-light: #666666;
    --bg-light: #f9f9f9;
    --font-main: 'Cairo', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    /* dir: rtl; */
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.6;
    background-color: #ffffff;
    /* direction: rtl; */
    text-align: right;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ===========================
   Buttons
   =========================== */
.btn {
    padding: 12px 35px;
    border-radius: 30px;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    display: inline-block;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #2e6b50;
    border-color: #2e6b50;
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: rgba(61, 138, 104, 0.1);
}

/* ===========================
   Page 01: Hero & Intro
   =========================== */
.hero-section {
    text-align: center;
    padding-bottom: 60px;
}

.hero-image-container {
    width: 100%;
    background: linear-gradient(to bottom, #f0f0f0 0%, #ffffff 100%);
    margin-bottom: 40px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.3;
    margin-bottom: 25px;
}

.hero-text {
    font-size: 18px;
    color: #444;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-subtext {
    font-size: 16px;
    color: #666;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Who We Are */
.who-we-are-section {
    padding: 80px 0;
}

.two-column-layout {
    display: flex;
    align-items: center;
    gap: 50px;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.section-image {
    width: 100%;
    border-radius: 12px;
}

/* Why Choose */
.why-choose-section {
    padding: 60px 0 100px;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-icon {
    width: 64px;
    height: 64px;
    object-fit: contain;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
}

.feature-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* ===========================
   Page 02: Sell Steps
   =========================== */
/* ... similar to English but RTL logic handles most ... */
.step-content-row {
    display: flex;
    gap: 20px;
}

.step-icon-text {
    display: flex;
    gap: 25px;
}

/* ===========================
   Page 04: Comparison
   =========================== */
.comp-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.comp-card {
    border-right: 4px solid;
    /* Flip border side */
    border-left: none;
}

.comp-card-left {
    border-color: #d4c291;
}

.comp-card-right {
    border-color: #3d8a68;
}

/* Responsive */
@media (max-width: 900px) {
    .two-column-layout {
        flex-direction: column-reverse;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .comp-row {
        grid-template-columns: 1fr;
    }
}