/*
Theme Name: Mahmoud ERP Future
Description: Professional ERP consultation website theme matching the modern design with tech aesthetics
Author: Mahmoud ERP Consultation Co.
Version: 1.0
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1F2937;
    background-color: #FFFFFF;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.site-header {
    background: #FFFFFF;
    padding: 1rem 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #3B82F6;
    text-decoration: none;
}

.main-nav {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-button {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.nav-button.services { background: #10B981; color: white; }
.nav-button.about { background: #3B82F6; color: white; }
.nav-button.features { background: #F59E0B; color: white; }
.nav-button.contact { background: #8B5CF6; color: white; }
.nav-button.get-started { background: #60A5FA; color: white; }

.nav-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Hero Section */
.hero-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #F9FAFB 0%, #FFFFFF 100%);
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #1F2937;
}

.hero-title .highlight {
    color: #3B82F6;
}

.hero-description {
    font-size: 1.25rem;
    color: #6B7280;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6B7280;
}

.hero-feature::before {
    content: "✓";
    color: #10B981;
    font-weight: bold;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, #EC4899 0%, #8B5CF6 100%);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary {
    background: #6366F1;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary:hover, .btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

/* Statistics Section */
.stats-section {
    padding: 3rem 0;
    background: #FFFFFF;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #60A5FA;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #6B7280;
    font-weight: 500;
}

/* Hero Image Section */
.hero-image-section {
    padding: 0;
    position: relative;
    height: 400px;
    background: url('assets/images/erp_control_room_hero.jpeg') center/cover no-repeat;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}

.system-status {
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(10px);
}

.status-indicator {
    width: 8px;
    height: 8px;
    background: #10B981;
    border-radius: 50%;
}

.status-text {
    font-weight: 600;
    color: #1F2937;
}

.status-subtext {
    color: #6B7280;
    font-size: 0.9rem;
}

/* Service Catalog Section */
.services-section {
    padding: 5rem 0;
    background: #F9FAFB;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    color: #1F2937;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: #6B7280;
    font-size: 1.25rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.service-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1F2937;
    margin-bottom: 1rem;
}

.service-description {
    color: #6B7280;
    line-height: 1.6;
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: #FFFFFF;
}

.about-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.about-text {
    font-size: 1.125rem;
    color: #6B7280;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.about-feature {
    text-align: center;
    padding: 1.5rem;
}

.about-feature-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #1F2937;
    margin-bottom: 1rem;
}

.about-feature-text {
    color: #6B7280;
    line-height: 1.6;
}

/* Mission Section */
.mission-section {
    padding: 3rem 0;
    background: #F9FAFB;
    text-align: center;
}

.mission-title {
    font-size: 2rem;
    font-weight: bold;
    color: #1F2937;
    margin-bottom: 1.5rem;
}

.mission-text {
    font-size: 1.125rem;
    color: #6B7280;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 5rem 0;
    background: #FFFFFF;
}

.why-choose-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
    margin-bottom: 3rem;
}

.why-stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #60A5FA;
    margin-bottom: 0.5rem;
}

.why-stat-label {
    color: #6B7280;
    font-weight: 500;
}

.why-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.why-feature {
    padding: 1.5rem;
}

.why-feature-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #1F2937;
    margin-bottom: 1rem;
}

.why-feature-text {
    color: #6B7280;
    line-height: 1.6;
}

/* Technology Stack Section */
.tech-stack-section {
    padding: 3rem 0;
    background: #F9FAFB;
    text-align: center;
}

.tech-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.tech-badge {
    background: #3B82F6;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: #FFFFFF;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-info {
    padding: 1rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item-title {
    font-size: 1.125rem;
    font-weight: bold;
    color: #1F2937;
    margin-bottom: 0.5rem;
}

.contact-item-value {
    color: #3B82F6;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.contact-item-desc {
    color: #6B7280;
    font-size: 0.9rem;
}

/* Contact Form */
.contact-form {
    background: #F9FAFB;
    padding: 2rem;
    border-radius: 12px;
}

.form-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1F2937;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-weight: 500;
    color: #1F2937;
    margin-bottom: 0.5rem;
}

.form-input, .form-textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #D1D5DB;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: #3B82F6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-textarea {
    height: 120px;
    resize: vertical;
}

.form-submit {
    background: #3B82F6;
    color: white;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.form-submit:hover {
    background: #2563EB;
    transform: translateY(-1px);
}

/* Footer */
.site-footer {
    background: #1F2937;
    color: #FFFFFF;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #FFFFFF;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer-section p, .footer-section a {
    color: #9CA3AF;
    text-decoration: none;
    line-height: 1.6;
}

.footer-section a:hover {
    color: #60A5FA;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    background: #374151;
    color: #FFFFFF;
    padding: 0.5rem;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #3B82F6;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1rem;
    text-align: center;
    color: #9CA3AF;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .main-nav {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .nav-button {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-choose-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .why-choose-stats {
        grid-template-columns: 1fr;
    }
}

