@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --primary: #6B0D23;
    --primary-dark: #4A0818;
    --accent: #B8860B;
    --bg-light: #FAF7F2;
    --text-main: #2D2D2D;
    --text-muted: #666666;
    --white: #FFFFFF;
    --container-width: 1440px;
    --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; outline: none; }

body {
    font-family: 'Cairo', sans-serif;
    background-color: var(--white);
    color: var(--text-main);
    direction: rtl;
    line-height: 1.5;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
}

/* Typography Refinement */
h1 { font-size: 4rem; font-weight: 900; line-height: 1.1; color: var(--primary); }
h2 { font-size: 2.2rem; font-weight: 800; color: var(--primary); margin-bottom: 1.5rem; }
h3 { font-size: 1.6rem; font-weight: 700; color: var(--primary); }
p { font-size: 1rem; color: var(--text-muted); }

/* Header */
header {
    background: var(--white);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img { height: 75px; }

.nav-links { display: flex; gap: 25px; }
.nav-links a {
    text-decoration: none;
    color: #444;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
}
.nav-links a:hover { color: var(--primary); }

.btn-call {
    background: var(--primary);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}
.btn-call:hover { background: var(--primary-dark); transform: translateY(-2px); }

/* Hero Section - The Heart of the Design */
.hero {
    padding: 100px 0;
    background: radial-gradient(circle at top right, rgba(244, 228, 225, 0.5), transparent), var(--white);
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 380px;
    gap: 40px;
    align-items: center;
}

/* Hero Content (Right) */
.hero-content {
    padding-left: 20px;
}
.hero-content .subtitle {
    font-size: 2.2rem;
    color: #444;
    font-weight: 600;
    margin-bottom: 5px;
}
.hero-content h1 {
    font-size: 6rem;
    margin-bottom: 20px;
}
.hero-content h1 span {
    display: block;
    font-size: 6rem;
    color: var(--primary);
    margin-top: -10px;
    line-height: 0.9;
}
.hero-content .desc {
    font-size: 1.6rem;
    color: var(--text-muted);
    margin: 30px 0 50px;
    max-width: 600px;
    font-weight: 600;
}

.hero-features {
    display: flex;
    gap: 30px;
}
.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}
.feature i {
    width: 60px;
    height: 60px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
}
.feature span { font-size: 0.9rem; font-weight: 700; color: #555; }

/* Hero Image (Center) */
.hero-image {
    display: flex;
    justify-content: center;
    position: relative;
}
.hero-image img {
    max-width: 120%;
    z-index: 1;
}

/* Hero Form (Left) */
.hero-form-container {
    padding-left: 20px;
}
.hero-form-card {
    background: var(--white);
    padding: 40px;
    border-radius: 40px;
    box-shadow: 0 30px 100px rgba(0,0,0,0.1);
    border: 1px solid #f0f0f0;
}
.hero-form-card h2 {
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 8px;
    color: var(--primary);
}
.hero-form-card p {
    text-align: center;
    font-size: 1rem;
    margin-bottom: 30px;
}

.form-group { margin-bottom: 20px; position: relative; }
.form-group i {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent);
    font-size: 1.1rem;
}
.form-group input, .form-group select {
    width: 100%;
    padding: 15px 50px 15px 20px;
    border: 1.5px solid #eee;
    border-radius: 15px;
    font-family: 'Cairo';
    font-size: 1rem;
    background: #fdfdfd;
}
.form-group input:focus { border-color: var(--primary); }

.btn-submit {
    width: 100%;
    background: var(--primary);
    color: var(--white);
    padding: 18px;
    border: none;
    border-radius: 15px;
    font-weight: 800;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}
.btn-submit:hover { background: var(--primary-dark); transform: scale(1.02); }

.form-footer {
    text-align: center;
    font-size: 0.85rem;
    color: #999;
    margin-top: 15px;
}

/* Problems Section */
.problems {
    padding: 100px 0;
    background: var(--bg-light);
    text-align: center;
}
.problems h2 { font-size: 3rem; margin-bottom: 60px; }
.problems-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}
.problem-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 180px;
}
.problem-icon {
    width: 130px;
    height: 130px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
}
.problem-card:hover .problem-icon { transform: translateY(-15px); border: 2px solid var(--primary); }
.problem-card span { font-size: 1rem; font-weight: 700; color: #444; }

/* Combined Services & Results Row */
.services-results {
    background: var(--primary);
    padding: 100px 0;
    color: var(--white);
}
.services-results h2 { color: var(--white); text-align: center; margin-bottom: 60px; }

.sr-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

/* Results Column */
.results-box {
    background: rgba(255,255,255,0.05);
    padding: 40px;
    border-radius: 30px;
    text-align: center;
}
.results-scroll {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    overflow-x: auto;
    padding-bottom: 10px;
}
.results-scroll img {
    min-width: 250px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.btn-more {
    background: var(--white);
    color: var(--primary);
    padding: 15px 40px;
    border-radius: 15px;
    font-weight: 800;
    text-decoration: none;
    display: inline-block;
}

/* Services Column */
.services-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.service-item {
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 25px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
}
.service-item:hover { background: rgba(255,255,255,0.1); transform: translateX(-10px); }
.service-icon-box {
    width: 70px;
    height: 70px;
    background: var(--accent);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}
.service-item h4 { font-size: 1.4rem; color: var(--white); margin-bottom: 5px; }
.service-item p { color: rgba(255,255,255,0.7); font-size: 0.95rem; }

/* CTA Banner */
.cta-banner {
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}
.cta-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cta-content h2 { font-size: 2.8rem; margin-bottom: 10px; }
.cta-content p { font-size: 1.5rem; color: #666; margin-bottom: 30px; }
.cta-discount {
    background: var(--bg-light);
    padding: 30px 60px;
    border-radius: 30px;
    text-align: center;
}
.cta-discount span { color: #888; font-size: 1.1rem; display: block; }
.cta-discount strong { color: var(--primary); font-size: 4rem; font-weight: 900; line-height: 1; }

/* Why Us Section */
.why-us {
    padding: 100px 0;
    text-align: center;
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 60px;
}
.why-item {
    background: var(--white);
    padding: 40px 20px;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    border: 1px solid #f5f5f5;
    transition: var(--transition);
}
.why-item:hover { transform: translateY(-10px); box-shadow: 0 20px 60px rgba(0,0,0,0.08); }
.why-item i { font-size: 2.5rem; color: var(--accent); margin-bottom: 20px; display: block; }
.why-item h4 { font-size: 1.1rem; color: #444; }

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .hero-grid { grid-template-columns: 1fr; gap: 60px; }
    .hero-image { display: none; }
    .hero-content, .hero-form-container { padding: 0; text-align: center; }
    .hero-features { justify-content: center; }
    .hero-content h1 span { font-size: 6rem; }
    .sr-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
}
