/* Startup Consulting (FA) page-specific styles extracted from startup-fa.php */

/* GLOBAL STYLES & TYPOGRAPHY */
body { margin: 0; background-color: #020617; color: #ffffff; line-height: 1.8; direction: rtl; text-align: right; }

/* ===== CONSULTATION SECTION ===== */
#consultation { background: var(--dark); position: relative; }
.consultation-container { max-width: 1000px; margin: 0 auto; padding: 0 2rem; }
.consultation-card { background: rgba(102, 126, 234, 0.05); border: 1px solid rgba(102, 126, 234, 0.2); border-radius: 30px; padding: 60px; backdrop-filter: blur(20px); position: relative; overflow: hidden; }
.consultation-header { text-align: center; margin-bottom: 3rem; position: relative; z-index: 1; }
.consultation-header h2 { font-size: 2.5rem; margin-bottom: 1rem; }
.consultation-header p { color: rgba(255, 255, 255, 0.7); font-size: 1.2rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; position: relative; z-index: 1; }
.form-group { position: relative; }
.form-group input, .form-group textarea { width: 100%; padding: 18px 24px; background: rgba(255, 255, 255, 0.05); border: 2px solid rgba(102, 126, 234, 0.2); border-radius: 15px; color: #fff; font-size: 1rem; transition: all 0.3s ease; font-family: 'Inter', sans-serif; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: #667eea; background: rgba(255, 255, 255, 0.08); box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1); }
.form-group textarea { grid-column: 1 / -1; resize: vertical; min-height: 150px; }
.form-submit { position: relative; z-index: 1; }

/* LINKS & TYPOGRAPHY */
a { color: #66BB6A; text-decoration: none; transition: color 0.3s ease; }
a:hover { color: #81C784; text-decoration: underline; }
.container { max-width: 1200px; margin: 0 auto; }
h1, h2, h3, h4 { margin-bottom: 1rem; font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2.5rem, 6vw, 4rem); color: #ffffff; }
h2 { font-size: clamp(2rem, 4vw, 2.8rem); margin-top: 3rem; margin-bottom: 2rem; border-right: 4px solid #4CAF50; padding-right: 1rem; border-left: none; padding-left: 0; }
h3 { font-size: 1.75rem; color: #4CAF50; }
p { margin-bottom: 1.5rem; color: #A0AEC0; }

/* BUTTONS */
.btn { display: inline-block; padding: 0.85rem 2.5rem; font-weight: bold; border-radius: 8px; transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease; text-decoration: none !important; box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4); font-size: 1.1rem; border: 2px solid #667eea; color: #fff; background: transparent; backdrop-filter: blur(10px); }
.btn:hover { transform: translateY(-3px); box-shadow: 0 15px 50px rgba(102, 126, 234, 0.6); color: #FFFFFF !important; }
.btn-secondary { background: transparent; border: 2px solid #4CAF50; box-shadow: none; }
.btn-secondary:hover { background: rgba(76, 175, 80, 0.1); transform: translateY(-2px); }

/* HERO */
.hero { text-align: center; padding: 8rem 2rem 6rem; background: linear-gradient(180deg, rgba(13, 17, 23, 0) 0%, #020617 100%), radial-gradient(circle at top, #1c2738 0%, #020617 70%); box-shadow: 0 0 50px rgba(76, 175, 80, 0.1) inset; }
.hero .tagline { font-size: 1.2rem; font-weight: 600; color: #4CAF50; margin-bottom: 1rem; letter-spacing: normal; }
.hero p.subtitle { font-size: 1.4rem; margin-bottom: 3rem; color: #A0AEC0; max-width: 800px; margin-left: auto; margin-right: auto; }

/* PROBLEM/SOLUTION */
.problem-solution-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 3rem; margin-top: 3rem; }
.grid-item { background-color: #161B22; padding: 2.5rem; border-radius: 12px; box-shadow: 0 0 0 1px rgba(76, 175, 80, 0.1), 0 10px 20px rgba(0, 0, 0, 0.3); transition: transform 0.3s ease, background-color 0.3s ease; text-align: right; }
.grid-item:hover { transform: translateY(-5px); background-color: #1f2731; }
.grid-item h3 { margin-top: 0; display: flex; align-items: center; gap: 0.75rem; flex-direction: row-reverse; justify-content: flex-end; }
.grid-item .icon { font-size: 1.8rem; }

/* SERVICES OFFERED */
.services-offered { background-color: #0a0f1c; padding: 4rem 0; margin-top: 5rem; }
.services-offered .container h2 { text-align: center; border-right: none; padding-right: 0; margin-bottom: 3rem; }
.services-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.service-card { background-color: #131720; padding: 1.5rem; border-radius: 10px; border-right: 4px solid #4CAF50; border-left: none; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); transition: background-color 0.3s; text-align: right; }
.service-card:hover { background-color: #161b27; }
.service-card h4 { margin-top: 0; font-size: 1.2rem; color: #E5E7EB; font-weight: 600; }
.service-card p { font-size: 0.95rem; margin-bottom: 0; }

/* PROCESS/WORKFLOW */
.process-section { margin-top: 5rem; }
.process-steps { display: flex; flex-wrap: wrap; justify-content: space-between; margin-top: 3rem; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 40px; right: 50px; left: 50px; height: 4px; background: linear-gradient(90deg, #66BB6A, #4CAF50); z-index: 1; border-radius: 2px; }
.step { flex-basis: 22%; text-align: center; background-color: #161B22; padding: 2rem 1rem; border-radius: 10px; position: relative; z-index: 2; box-shadow: 0 5px 15px rgba(0,0,0,0.2); }
.step-number { display: inline-flex; align-items: center; justify-content: center; width: 60px; height: 60px; background: linear-gradient(135deg, #4CAF50, #66BB6A); color: white; border-radius: 50%; font-size: 1.5rem; font-weight: bold; margin-bottom: 1rem; box-shadow: 0 4px 10px rgba(76, 175, 80, 0.4); }
.step h4 { color: #E5E7EB; font-size: 1.1rem; }
.step p { font-size: 0.9rem; }

/* TESTIMONIAL */
.testimonial-section { margin-top: 5rem; padding: 4rem 0; background-color: #0a0f1c; border-radius: 15px; }
.testimonial-card { max-width: 800px; margin: 2rem auto; padding: 2rem; background-color: #161B22; border-radius: 12px; text-align: center; border-right: 5px solid #4CAF50; border-left: none; }
.testimonial-text { font-style: italic; font-size: 1.2rem; color: #E5E7EB; margin-bottom: 1.5rem; }
.testimonial-author { font-weight: bold; color: #4CAF50; }
.testimonial-author span { display: block; font-weight: normal; color: #A0AEC0; font-size: 0.9rem; margin-top: 0.25rem; }

/* FINAL CTA */
.final-cta { text-align: center; padding: 6rem 2rem; margin-top: 5rem; background: linear-gradient(180deg, #020617 0%, #0a0f1c 100%); border-radius: 15px; }
.final-cta h2 { font-size: clamp(2.2rem, 5vw, 3.5rem); margin-bottom: 1.5rem; border-right: none; padding-right: 0; }
.final-cta p { font-size: 1.2rem; max-width: 700px; margin-left: auto; margin-right: auto; margin-bottom: 2.5rem; }

/* RESPONSIVE */
@media(max-width: 768px) {
    .process-steps::before { display: none; }
    .process-steps { flex-direction: column; gap: 1.5rem; }
    .step { flex-basis: 100%; }
    .hero { padding: 5rem 1rem 4rem; }
    h1 { font-size: clamp(2rem, 8vw, 3rem); }
}


