/* Pilot Projects Page Styles */

.pilot-hero {
    background: linear-gradient(135deg, #00727C 0%, #009da8 100%);
    color: white;
    padding: 100px 20px 80px;
    text-align: center;
}

.pilot-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 20px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Pilot Overview */
.pilot-overview {
    padding: 80px 20px;
    background: #f8f9fa;
}

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

.overview-content h2 {
    font-size: 36px;
    color: #4F4B45;
    margin-bottom: 50px;
}

.pilot-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.feature-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 20px;
    color: #00727C;
    margin-bottom: 10px;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Pilot Form Section */
.pilot-form-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
    font-size: 36px;
    color: #4F4B45;
    margin-bottom: 20px;
    text-align: center;
}

.form-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-size: 18px;
}

/* Form Styles */
.pilot-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #4F4B45;
    margin-bottom: 8px;
    font-size: 16px;
}

.required {
    color: #D6452A;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
    font-family: inherit;
}

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

/* Checkbox Group */
.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: background 0.3s;
}

.checkbox-label:hover {
    background: #e8f4f5;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #00727C;
}

.checkbox-label span {
    font-size: 15px;
    color: #4F4B45;
}

/* Submit Button */
.submit-btn {
    margin-top: 20px;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 600;
    align-self: center;
}

/* Form Note */
.form-note {
    text-align: center;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
    color: #666;
}

.form-note a {
    color: #00727C;
    text-decoration: none;
    font-weight: 600;
}

.form-note a:hover {
    text-decoration: underline;
}

/* Success Metrics */
.pilot-success {
    padding: 80px 20px;
    background: #f8f9fa;
}

.pilot-success h2 {
    text-align: center;
    font-size: 36px;
    color: #4F4B45;
    margin-bottom: 50px;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.metric-card {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border: 2px solid #00727C;
    border-radius: 10px;
    transition: all 0.3s;
}

.metric-card:hover {
    background: #00727C;
    color: white;
}

.metric-card:hover h3 {
    color: white;
}

.metric-card:hover p {
    color: rgba(255, 255, 255, 0.9);
}

.metric-card h3 {
    font-size: 24px;
    color: #00727C;
    margin-bottom: 15px;
    transition: color 0.3s;
}

.metric-card p {
    color: #666;
    line-height: 1.6;
    transition: color 0.3s;
}

/* Form Success Message */
.form-success-message {
    background: #4CAF50;
    color: white;
    padding: 30px;
    border-radius: 10px;
    margin-top: 30px;
    text-align: center;
    animation: slideIn 0.5s ease-out;
}

.form-success-message h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.form-success-message p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Form Error State */
.form-group.error label {
    color: #D6452A;
}

.form-group.error .checkbox-group {
    border: 2px solid #D6452A;
    border-radius: 8px;
    padding: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .pilot-hero h1 {
        font-size: 36px;
    }
    
    .form-container {
        padding: 40px 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
    
    .pilot-features,
    .metrics-grid {
        grid-template-columns: 1fr;
    }
}