/* Additional page styles */

.page-header {
    background: linear-gradient(135deg, #FF6200 0%, #ff8533 100%);
    padding: 80px 0 60px;
    text-align: center;
    color: #fff;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.95;
}

.page-content {
    padding: 60px 0;
}

/* Content Sections */
.content-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

.content-section.reverse {
    direction: rtl;
}

.content-section.reverse > * {
    direction: ltr;
}

.content-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.content-text h2 {
    color: #FF6200;
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
}

.content-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}

/* Stats Section */
.stats-section {
    text-align: center;
    margin: 80px 0;
}

.stats-section h2 {
    color: #333;
    font-size: 36px;
    margin-bottom: 50px;
    font-weight: 700;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card {
    background: linear-gradient(135deg, #FF6200 0%, #ff8533 100%);
    padding: 40px 20px;
    border-radius: 12px;
    color: #fff;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.95;
}

/* Values Section */
.values-section {
    margin: 80px 0;
}

.values-section h2 {
    text-align: center;
    color: #333;
    font-size: 36px;
    margin-bottom: 50px;
    font-weight: 700;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.value-card {
    background: #f8f8f8;
    padding: 40px;
    border-radius: 12px;
    border-left: 4px solid #FF6200;
    transition: all 0.3s ease;
}

.value-card:hover {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateX(10px);
}

.value-card h3 {
    color: #FF6200;
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
}

.value-card p {
    color: #666;
    line-height: 1.8;
    font-size: 15px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

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

.service-icon {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon img {
    transform: scale(1.1);
}

.service-card h3 {
    color: #333;
    font-size: 20px;
    margin: 25px 25px 15px;
    font-weight: 700;
}

.service-card p {
    color: #666;
    line-height: 1.7;
    margin: 0 25px 25px;
    font-size: 15px;
}

.service-card .btn {
    margin: 0 25px 25px;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.contact-info h3 {
    color: #FF6200;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item h4 {
    color: #333;
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-item p {
    color: #666;
    line-height: 1.8;
    font-size: 15px;
}

.contact-form h3 {
    color: #FF6200;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 700;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #333;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FF6200;
}

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

/* Platforms Grid */
.platforms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.platform-card {
    background: #f8f8f8;
    padding: 40px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.platform-card:hover {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.platform-card h3 {
    color: #FF6200;
    font-size: 26px;
    margin-bottom: 15px;
    font-weight: 700;
}

.platform-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 15px;
}

.platform-features {
    list-style: none;
    margin: 20px 0;
}

.platform-features li {
    color: #666;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 15px;
}

.platform-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #FF6200;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 1024px) {
    .content-section {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .platforms-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 36px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}