
.partner-hero {
    position: relative;
    padding: 120px 24px 80px;
    text-align: center;
    background: linear-gradient(180deg, rgba(23, 27, 22, 0.9) 0%, var(--color-background) 100%);
    overflow: hidden;
}

.partner-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(143, 164, 134, 0.12) 0%, rgba(16, 19, 15, 0) 70%);
    z-index: 0;
}

.partner-content-wrapper {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.partner-badge {
    display: inline-block;
    background-color: rgba(214, 166, 111, 0.1);
    color: var(--color-warning);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 30px;
    border: 1px solid rgba(214, 166, 111, 0.2);
    letter-spacing: 0.5px;
}

.partner-hero h1 {
    font-size: 3.5rem;
    color: var(--color-text-primary);
    margin-bottom: 30px;
    font-weight: 700;
    line-height: 1.3;
}

.partner-hero h1 span {
    color: var(--color-primary);
}

.partner-hero p {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    margin: 0 auto 50px;
    line-height: 1.8;
}




.mockup-container {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.6);
    overflow: hidden;
    display: flex;
    height: 350px;
    z-index: 2;
}

.mockup-sidebar {
    width: 20%;
    background: var(--color-surface-muted);
    border-left: 1px solid var(--color-border);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mock-line {
    height: 10px;
    background: var(--color-border-light);
    border-radius: 5px;
    width: 100%;
}
.mock-line.short { width: 60%; }
.mock-line.active { background: var(--color-primary-muted); width: 80%; }

.mockup-main {
    width: 80%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mock-cards {
    display: flex;
    gap: 15px;
}

.mock-card {
    flex: 1;
    height: 80px;
    background: var(--color-background);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 15px;
    position: relative;
    overflow: hidden;
}

.mock-card::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(143, 164, 134, 0.1), transparent);
    animation: shimmer 3s infinite;
}

.mock-chart {
    flex: 1;
    background: var(--color-background);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    gap: 10px;
}

.mock-bar {
    flex: 1;
    background: var(--color-primary-muted);
    border-radius: 4px 4px 0 0;
    height: 10%;
    animation: growBars 4s infinite ease-in-out alternate;
}
.mock-bar:nth-child(2) { animation-delay: 0.2s; background: var(--color-warning); }
.mock-bar:nth-child(3) { animation-delay: 0.4s; }
.mock-bar:nth-child(4) { animation-delay: 0.6s; }


.mock-mouse {
    position: absolute;
    width: 24px;
    height: 24px;
    z-index: 10;
    filter: drop-shadow(0 4px 4px rgba(0,0,0,0.5));
    animation: moveMouse 6s infinite ease-in-out;
}

@keyframes shimmer {
    100% { left: 200%; }
}

@keyframes growBars {
    0% { height: 10%; }
    50% { height: 70%; }
    100% { height: 40%; }
}

@keyframes moveMouse {
    0% { top: 90%; left: 90%; opacity: 0; }
    10% { opacity: 1; }
    25% { top: 40px; left: 10%; } 
    40% { top: 120px; left: 60%; transform: scale(1); } 
    45% { transform: scale(0.8); } 
    50% { transform: scale(1); }
    70% { top: 250px; left: 80%; }
    90% { top: 90%; left: 90%; opacity: 0; }
    100% { opacity: 0; }
}




.info-section {
    padding: 100px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--color-text-primary);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto;
}


.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.feature-box {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    padding: 40px;
    border-radius: 20px;
    transition: transform 0.3s;
}

.feature-box:hover {
    transform: translateY(-8px);
    border-color: var(--color-primary-muted);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(143, 164, 134, 0.1);
    color: var(--color-primary);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 24px;
}

.feature-box h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--color-text-primary);
}

.feature-box p {
    color: var(--color-text-secondary);
    line-height: 1.7;
    font-size: 1.05rem;
}


.growth-section {
    background: var(--color-surface-muted);
    padding: 100px 24px;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.growth-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.growth-text {
    flex: 1;
}

.growth-text h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.growth-text ul {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.growth-text li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 1.1rem;
    color: var(--color-text-secondary);
}

.growth-text li i {
    color: var(--color-warning);
    font-size: 1.4rem;
    margin-top: 3px;
}




.growth-visual {
    flex: 1;
    background: var(--color-surface);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid var(--color-border);
    position: relative;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    overflow: hidden;
}

.growth-visual::before {
    content: "نمو الإيرادات المتوقع";
    position: absolute;
    top: 24px; right: 30px;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    font-weight: bold;
}

.chart-container {
    position: relative;
    width: 100%;
    height: 220px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.animated-chart {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.grid-line {
    stroke: var(--color-border-light);
    stroke-dasharray: 4 4;
    stroke-width: 1;
}


.chart-path {
    fill: none;
    stroke: var(--color-primary);
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawChart 4s ease-in-out infinite alternate;
    filter: drop-shadow(0 8px 8px rgba(143, 164, 134, 0.4));
}


.chart-fill {
    fill: url(#chartGradient);
    opacity: 0;
    animation: fadeFill 4s ease-in-out infinite alternate;
}


.chart-dot-animated {
    fill: var(--color-warning);
    opacity: 0;
    animation: pulseDot 4s ease-in-out infinite alternate;
    filter: drop-shadow(0 0 12px var(--color-warning));
}

@keyframes drawChart {
    0% { stroke-dashoffset: 1000; }
    45% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: 0; }
}

@keyframes fadeFill {
    0%, 30% { opacity: 0; }
    50%, 100% { opacity: 1; }
}

@keyframes pulseDot {
    0%, 40% { opacity: 0; transform: scale(0.5); transform-origin: 380px 30px; }
    45%, 100% { opacity: 1; transform: scale(1); transform-origin: 380px 30px; }
}


.meeting-section {
    padding: 100px 24px;
    background-color: var(--color-background);
}

.meeting-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--color-surface);
    padding: 50px;
    border-radius: 24px;
    border: 1px solid var(--color-border);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 24px; }
.form-group { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.form-group label { font-weight: 500; color: var(--color-text-secondary); }
.form-control { background-color: var(--color-background); border: 1px solid var(--color-border-light); color: var(--color-text-primary); padding: 16px; border-radius: 12px; font-size: 1rem; font-family: inherit; transition: border-color 0.3s; }
.form-control:focus { outline: none; border-color: var(--color-primary); }
textarea.form-control { resize: vertical; min-height: 120px; }


.flatpickr-calendar { background: var(--color-surface) !important; border: 1px solid var(--color-border-light) !important; box-shadow: 0 10px 30px rgba(0,0,0,0.5) !important; }
.flatpickr-day.selected { background: var(--color-primary) !important; border-color: var(--color-primary) !important; color: var(--color-background) !important; font-weight: bold; }

@media (max-width: 900px) {
    .growth-container { flex-direction: column; }
    .partner-hero h1 { font-size: 2.5rem; }
    .mockup-container { height: 250px; }
}
@media (max-width: 768px) {
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .meeting-container { padding: 32px 24px; }
    .partner-hero h1 { font-size: 2rem; }
}