/* Page Header */
.page-header {
    background: linear-gradient(135deg, #0066cc 0%, #00a3e0 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
    margin-bottom: 60px;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Service Detail Items */
.services-detail {
    padding: 40px 20px;
}

.service-detail-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

.service-detail-item.reverse {
    direction: rtl;
}

.service-detail-item.reverse > * {
    direction: ltr;
}

.service-detail-content h2 {
    text-align: left;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.service-detail-content p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 0.8rem 0;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.service-features i {
    color: #00a3e0;
    font-size: 1.2rem;
}

.service-detail-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-image {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: #0066cc;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Applications */
.applications {
    padding: 80px 20px;
    background: #f9f9f9;
}

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

.app-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-left: 4px solid #00a3e0;
}

.app-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.app-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #1a1a1a;
}

.app-card i {
    color: #0066cc;
    font-size: 1.5rem;
}

.app-card p {
    color: #666;
    font-size: 0.95rem;
}

/* Hardware Page Specific */
.specs-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.spec-card {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #0066cc;
}

.spec-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.spec-list {
    list-style: none;
}

.spec-list li {
    padding: 0.5rem 0;
    color: #666;
    font-size: 0.95rem;
}

.spec-list li strong {
    color: #1a1a1a;
}

/* Software Page Specific */
.software-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.software-feature {
    padding: 2rem;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    border-radius: 10px;
    border-left: 4px solid #00a3e0;
}

.software-feature h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.software-feature p {
    color: #666;
    line-height: 1.8;
}

/* About Page Specific */
.about-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-section h2 {
    margin-bottom: 2rem;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.about-image {
    background: linear-gradient(135deg, #e8e8e8 0%, #f5f5f5 100%);
    height: 400px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #0066cc;
}

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

.team-member {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.team-avatar {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #0066cc 0%, #00a3e0 100%);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
}

.team-member h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.team-member p {
    color: #666;
    font-size: 0.9rem;
}

/* Contact Page Specific */
.contact-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.contact-form {
    background: #f9f9f9;
    padding: 2.5rem;
    border-radius: 10px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1a1a1a;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #0066cc;
    box-shadow: 0 0 5px rgba(0, 102, 204, 0.3);
}

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

.contact-info {
    padding: 2rem;
}

.info-item {
    margin-bottom: 2.5rem;
    display: flex;
    gap: 1.5rem;
}

.info-icon {
    font-size: 2rem;
    color: #0066cc;
    width: 50px;
    height: 50px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.info-content p {
    color: #666;
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }

    .service-detail-item {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .service-detail-item.reverse {
        direction: ltr;
    }

    .service-detail-content h2 {
        text-align: center;
    }

    .placeholder-image {
        width: 200px;
        height: 200px;
        font-size: 3rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .software-features {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
