/**
 * Corporate Tech Plugin Styles
 */

/* Contact Form Styles */
.corp-tech-contact-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 8px;
}

.corp-tech-contact-form h3 {
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}

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

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

.corp-tech-form-group input,
.corp-tech-form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.corp-tech-form-group input:focus,
.corp-tech-form-group textarea:focus {
    outline: none;
    border-color: #1a73e8;
}

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

.corp-tech-form-submit {
    text-align: center;
}

.corp-tech-form-submit button {
    background: #1a73e8;
    color: #fff;
    padding: 12px 40px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.corp-tech-form-submit button:hover {
    background: #1557b0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 115, 232, 0.3);
}

.corp-tech-form-submit button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.corp-tech-form-message {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
    text-align: center;
}

.corp-tech-form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.corp-tech-form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Services Grid Styles */
.corp-tech-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.corp-tech-service-item {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.corp-tech-service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.corp-tech-service-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 20px;
}

.corp-tech-service-item h3 {
    margin-bottom: 15px;
    color: #333;
    font-size: 20px;
}

.corp-tech-service-item p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.corp-tech-service-item .read-more {
    color: #1a73e8;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.corp-tech-service-item .read-more:hover {
    color: #1557b0;
}

/* Partners List Styles */
.corp-tech-partners-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.corp-tech-partner-item {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.corp-tech-partner-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.corp-tech-partner-item img {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
}

.corp-tech-partner-item h4 {
    margin-bottom: 10px;
    color: #333;
}

/* Widget Styles */
.corp-tech-widget {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 20px;
}

.corp-tech-widget h3 {
    margin-bottom: 15px;
    color: #333;
}

.corp-tech-widget ul {
    list-style: none;
    padding: 0;
}

.corp-tech-widget ul li {
    margin-bottom: 10px;
}

.corp-tech-widget ul li a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.corp-tech-widget ul li a:hover {
    color: #1a73e8;
}

/* Responsive */
@media (max-width: 768px) {
    .corp-tech-services-grid,
    .corp-tech-partners-list {
        grid-template-columns: 1fr;
    }

    .corp-tech-contact-form {
        padding: 20px;
    }
}
