/* Enterprise Hardware Landing Page */

.eh-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #005bb5 100%);
    color: #ffffff;
    padding: 120px 0 60px;
    text-align: center;
}

.eh-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.eh-hero-text {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Info Section */
.eh-info-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.eh-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.eh-service-item {
    background-color: var(--background-color);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.eh-service-item:hover {
    transform: translateY(-5px);
}

.eh-service-icon {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.eh-service-item h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text-color);
}

.eh-service-item p {
    color: #666;
    line-height: 1.7;
}

/* Contact Section */
.eh-contact-section {
    padding: 80px 0;
}

.eh-contact-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 15px;
}

.eh-contact-intro {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

/* Contact Form */
.eh-contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-color);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background-color: #fff;
    color: var(--text-color);
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.1);
}

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

/* Captcha */
.captcha-group {
    margin-bottom: 24px;
}

.captcha-container {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.captcha-image {
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    height: 60px;
    width: 180px;
}

.captcha-refresh {
    background: none;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    padding: 8px;
    cursor: pointer;
    color: var(--primary-color);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.captcha-refresh:hover {
    background-color: var(--light-gray);
    border-color: var(--primary-color);
}

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 14px;
    font-size: 1.1rem;
    cursor: pointer;
}

/* Flash Messages */
.flash-message {
    padding: 16px 20px;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.flash-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.flash-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.flash-error ul {
    margin: 0;
    padding-left: 20px;
}

.flash-error li {
    margin-bottom: 4px;
}

/* Responsive */
@media (max-width: 768px) {
    .eh-hero {
        padding: 100px 0 50px;
    }

    .eh-hero h1 {
        font-size: 1.8rem;
    }

    .eh-hero-text {
        font-size: 1rem;
    }

    .eh-info-section,
    .eh-contact-section {
        padding: 50px 0;
    }

    .eh-contact-section h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .eh-hero h1 {
        font-size: 1.5rem;
    }

    .eh-service-item {
        padding: 30px 20px;
    }

    .captcha-container {
        flex-wrap: wrap;
    }
}
