.project-request-form-wrapper {
max-width: 800px;
margin: 40px auto;
padding: 0 20px;
} .form-collapsed {
display: block;
}
.form-cta-card {
background: var(--accent);
color: white;
border-radius: var(--radius-md);
padding: var(--space-3xl) var(--space-2xl);
text-align: center;
box-shadow: var(--shadow-md);
position: relative;
}
.cta-icon {
width: 80px;
height: 80px;
background: rgba(255, 255, 255, 0.15);
border-radius: var(--radius-full);
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto var(--space-lg);
color: white;
}
.cta-icon svg {
width: 40px;
height: 40px;
}
.cta-title {
font-size: var(--font-size-3xl);
font-weight: var(--font-weight-bold);
margin: 0 0 var(--space-md) 0;
color: white;
}
.cta-description {
color: #fff;
font-size: var(--font-size-lg);
line-height: var(--line-height-normal);
margin: 0 0 var(--space-lg) 0;
opacity: 0.95;
max-width: 600px;
margin-left: auto;
margin-right: auto;
}
.cta-benefits {
list-style: none;
padding: 0;
margin: 0 0 var(--space-xl) 0;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: var(--space-sm);
max-width: 700px;
margin-left: auto;
margin-right: auto;
}
.cta-benefits li {
background: rgba(255, 255, 255, 0.15);
padding: var(--space-sm) var(--space-md);
border-radius: var(--radius-md);
font-size: var(--font-size-base);
font-weight: var(--font-weight-medium);
display: flex;
align-items: center;
gap: var(--space-xs);
transition: var(--transition-fast);
}
.cta-benefits li:hover {
background: rgba(255, 255, 255, 0.25);
}
.benefit-icon {
font-size: 20px;
font-weight: bold;
}
.expand-form-button {
background: white;
color: var(--accent, #667eea);
font-size: var(--font-size-xl);
font-weight: var(--font-weight-bold);
padding: var(--space-md) var(--space-3xl);
border: none;
border-radius: var(--radius-full);
cursor: pointer;
transition: var(--transition-fast);
box-shadow: var(--shadow-md);
display: inline-flex;
align-items: center;
gap: var(--space-xs);
font-family: inherit;
}
.expand-form-button:hover {
opacity: 0.9;
}
.expand-form-button:active {
opacity: 0.8;
}
.cta-privacy {
margin: var(--space-xl) 0 0 0;
opacity: 1;
font-size: var(--font-size-base);
}
.cta-privacy small {
color: #fff;
} .project-request-form {
background: #ffffff;
border-radius: var(--radius-md);
box-shadow: var(--shadow-sm);
border: var(--border-width) solid var(--border-color-light);
padding: var(--space-2xl);
} .form-header {
text-align: center;
margin-bottom: var(--space-xl);
padding-bottom: var(--space-lg);
border-bottom: var(--border-width) solid var(--border-color-light);
}
.form-title {
font-size: var(--font-size-2xl);
font-weight: var(--font-weight-bold);
color: var(--gray-900);
margin: 0 0 var(--space-sm) 0;
}
.form-subtitle {
font-size: 16px;
color: #666;
line-height: 1.6;
margin: 0;
} .form-messages {
padding: 15px 20px;
border-radius: 6px;
margin-bottom: 30px;
font-size: 15px;
line-height: 1.6;
}
.form-messages.success {
background: #d4edda;
border: 1px solid #c3e6cb;
color: #155724;
}
.form-messages.error {
background: #f8d7da;
border: 1px solid #f5c6cb;
color: #721c24;
} .form-section {
margin-bottom: 40px;
}
.section-title {
font-size: 20px;
font-weight: 600;
color: #2c3e50;
margin: 0 0 20px 0;
padding-bottom: 10px;
border-bottom: 2px solid var(--accent, #3498db);
} .form-group {
margin-bottom: var(--space-md);
}
.form-row {
display: grid;
grid-template-columns: 1fr 1fr;
gap: var(--space-md);
}
label {
display: block;
font-weight: var(--font-weight-medium);
color: var(--gray-700);
margin-bottom: var(--space-xs);
font-size: var(--font-size-sm);
}
label.required::after {
content: " *";
color: var(--color-error);
} input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
width: 100%;
padding: var(--space-sm);
border: var(--border-width) solid var(--border-color-default);
border-radius: var(--radius-sm);
font-size: var(--font-size-base);
font-family: inherit;
transition: var(--transition-fast);
box-sizing: border-box;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
select:focus,
textarea:focus {
outline: none;
border-color: var(--accent, #3498db);
} input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="tel"]::placeholder,
textarea::placeholder {
color: #aaa;
opacity: 1;
}
input[type="text"]::-webkit-input-placeholder,
input[type="email"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
color: #aaa;
opacity: 1;
}
input[type="text"]::-moz-placeholder,
input[type="email"]::-moz-placeholder,
input[type="tel"]::-moz-placeholder,
textarea::-moz-placeholder {
color: #aaa;
opacity: 1;
}
input[type="text"]:-ms-input-placeholder,
input[type="email"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
textarea:-ms-input-placeholder {
color: #aaa;
opacity: 1;
} select option[value=""] {
color: #aaa;
}
select:invalid {
color: #aaa;
}
textarea {
resize: vertical;
min-height: 120px;
}
.field-hint {
display: block;
margin-top: 6px;
font-size: 13px;
color: #666;
font-style: italic;
} .gdpr-section {
background: #f8f9fa;
padding: 30px;
border-radius: 8px;
border: 2px solid #e0e0e0;
}
.gdpr-notice {
background: #e7f3ff;
border-left: 4px solid #2196f3;
padding: 15px;
margin-bottom: 25px;
border-radius: 4px;
}
.gdpr-notice p {
margin: 0;
font-size: 14px;
line-height: 1.6;
color: #004085;
} .checkbox-group {
background: white;
padding: 15px;
border-radius: 6px;
border: 1px solid #e0e0e0;
margin-bottom: 15px;
}
.checkbox-label {
display: flex;
align-items: flex-start;
cursor: pointer;
margin: 0;
}
.checkbox-label input[type="checkbox"] {
flex-shrink: 0;
width: 20px;
height: 20px;
margin-right: 12px;
cursor: pointer;
accent-color: var(--accent, #3498db);
}
.checkbox-text {
font-size: 14px;
line-height: 1.6;
color: #333;
}
.required-mark {
color: #e74c3c;
font-weight: bold;
}
.checkbox-group .field-hint {
margin-left: 32px;
} .privacy-notice {
background: #fff3cd;
border: 1px solid #ffc107;
padding: 15px;
border-radius: 6px;
margin-top: 20px;
}
.privacy-notice p {
margin: 0;
font-size: 13px;
line-height: 1.6;
color: #856404;
}
.privacy-notice a {
color: #856404;
text-decoration: underline;
font-weight: 600;
} .user-rights-box {
background: #e8f5e9;
border-left: 4px solid #4caf50;
padding: 20px;
border-radius: 4px;
margin-top: 20px;
}
.user-rights-box h4 {
margin: 0 0 10px 0;
color: #2c3e50;
font-size: 15px;
}
.user-rights-box ul {
margin: 10px 0;
padding-left: 20px;
font-size: 13px;
line-height: 1.8;
color: #155724;
}
.user-rights-box p {
margin: 10px 0 0 0;
font-size: 13px;
color: #155724;
}
.user-rights-box a {
color: #155724;
text-decoration: underline;
font-weight: 600;
} .form-actions {
text-align: center;
margin-top: 40px;
padding-top: 30px;
border-top: 2px solid #f0f0f0;
}
.submit-button {
background: var(--accent, #3498db);
color: white;
font-size: var(--font-size-lg);
font-weight: var(--font-weight-semibold);
padding: var(--space-sm) var(--space-2xl);
border: none;
border-radius: var(--radius-md);
cursor: pointer;
transition: var(--transition-fast);
box-shadow: var(--shadow-sm);
font-family: inherit;
}
.submit-button:hover {
opacity: 0.9;
}
.submit-button:active {
opacity: 0.8;
}
.submit-button:disabled {
background: var(--gray-400);
cursor: not-allowed;
opacity: 0.6;
}
.button-spinner {
display: inline-flex;
align-items: center;
gap: var(--space-xs);
}
.spinner {
width: 16px;
height: 16px;
border: 2px solid rgba(255, 255, 255, 0.3);
border-top-color: white;
border-radius: var(--radius-full);
animation: spin 0.6s linear infinite;
}
@keyframes spin {
to {
transform: rotate(360deg);
}
}
.form-footer-note {
margin: 15px 0 0 0;
font-size: 13px;
color: #666;
font-style: italic;
} @media (max-width: 768px) { .form-cta-card {
padding: 40px 30px;
}
.cta-title {
font-size: 28px;
}
.cta-description {
font-size: 16px;
}
.cta-benefits {
grid-template-columns: 1fr;
gap: 10px;
}
.cta-benefits li {
padding: 12px 16px;
font-size: 15px;
}
.expand-form-button {
width: 100%;
font-size: 18px;
padding: 16px 40px;
justify-content: center;
} .project-request-form {
padding: 30px 20px;
}
.form-title {
font-size: 26px;
}
.form-row {
grid-template-columns: 1fr;
gap: 0;
}
.submit-button {
width: 100%;
padding: 14px 24px;
font-size: 16px;
}
}
@media (max-width: 480px) { .project-request-form-wrapper {
padding: 0 10px;
margin: 20px auto;
}
.form-cta-card {
padding: 30px 20px;
border-radius: 12px;
}
.cta-icon {
width: 60px;
height: 60px;
margin-bottom: 20px;
}
.cta-icon svg {
width: 30px;
height: 30px;
}
.cta-title {
font-size: 24px;
}
.cta-description {
font-size: 15px;
}
.cta-benefits {
margin-bottom: 30px;
}
.expand-form-button {
font-size: 16px;
padding: 14px 30px;
} .project-request-form {
padding: 20px 15px;
}
.form-title {
font-size: 22px;
}
.gdpr-section {
padding: 20px 15px;
}
} input.error,
select.error,
textarea.error {
border-color: #e74c3c;
}
input.success,
select.success,
textarea.success {
border-color: #4caf50;
}
.field-error {
display: block;
margin-top: 6px;
font-size: 13px;
color: #e74c3c;
}
.form-group.error,
.checkbox-group.error {
border-color: #e74c3c;
background: #fff5f5;
}
.error-list {
margin: 0;
padding-left: 20px;
list-style: disc;
}
.error-list li {
margin-bottom: 8px;
}  .form-progress {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 50px;
padding: 30px 0;
position: relative;
}
.form-progress::before {
content: '';
position: absolute;
top: 50%;
left: 0;
right: 0;
height: 3px;
background: #e0e0e0;
z-index: 0;
transform: translateY(-50%);
}
.progress-step {
display: flex;
flex-direction: column;
align-items: center;
gap: 10px;
z-index: 1;
background: white;
padding: 0 15px;
cursor: pointer;
transition: all 0.3s ease;
position: relative;
}
.progress-step:hover {
transform: scale(1.05);
}
.step-label {
font-size: 13px;
color: #999;
font-weight: 600;
text-align: center;
transition: all 0.3s ease;
text-transform: uppercase;
letter-spacing: 0.5px;
} .progress-step.active .step-label {
color: var(--accent, #3498db);
font-weight: 700;
} .progress-step.completed .step-label {
color: #4caf50;
font-weight: 600;
} .form-step {
min-height: 400px;
animation: fadeIn 0.3s ease-in-out;
}
@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(10px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.step-title {
font-size: 26px;
font-weight: 700;
color: #2c3e50;
margin: 0 0 10px 0;
}
.step-description {
font-size: 15px;
color: #666;
line-height: 1.6;
margin: 0 0 30px 0;
}
.step-note {
background: #f0f7ff;
border-left: 4px solid var(--accent, #3498db);
padding: 15px;
border-radius: 4px;
margin-top: 20px;
font-size: 14px;
line-height: 1.6;
color: #2c3e50;
} .character-counter {
text-align: right;
margin-top: 8px;
font-size: 13px;
color: #999;
font-weight: 500;
} .image-dropzone {
border: 3px dashed #ddd;
border-radius: 12px;
padding: 50px 30px;
text-align: center;
background: #fafafa;
cursor: pointer;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}
.image-dropzone::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(135deg, transparent 0%, rgba(52, 152, 219, 0.05) 100%);
opacity: 0;
transition: opacity 0.3s ease;
}
.image-dropzone:hover {
border-color: var(--accent, #3498db);
background: #f0f7ff;
}
.image-dropzone:hover::before {
opacity: 1;
}
.image-dropzone.dragover {
border-color: var(--accent, #3498db);
background: #e3f2fd;
border-style: solid;
transform: scale(1.02);
}
.dropzone-message {
display: flex;
flex-direction: column;
align-items: center;
gap: 20px;
position: relative;
z-index: 1;
}
.dropzone-message svg {
width: 72px;
height: 72px;
color: #999;
transition: all 0.3s ease;
}
.image-dropzone:hover .dropzone-message svg {
color: var(--accent, #3498db);
transform: translateY(-5px);
}
.dropzone-message p {
font-size: 18px;
font-weight: 600;
color: #555;
margin: 0;
}
.dropzone-message small {
font-size: 14px;
color: #999;
display: block;
} .image-preview-container {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
gap: 20px;
margin-top: 25px;
}
.image-preview {
position: relative;
border-radius: 12px;
overflow: hidden;
background: #f5f5f5;
aspect-ratio: 1;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
transition: all 0.3s ease;
}
.image-preview:hover {
transform: translateY(-3px);
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.image-preview img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
} .image-progress {
position: absolute;
bottom: 0;
left: 0;
right: 0;
height: 6px;
background: rgba(0, 0, 0, 0.2);
z-index: 2;
}
.progress-bar {
height: 100%;
background: var(--accent, #3498db);
transition: width 0.3s ease;
position: relative;
overflow: hidden;
}
.progress-bar::after {
content: '';
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
background: linear-gradient(
90deg,
transparent 0%,
rgba(255, 255, 255, 0.3) 50%,
transparent 100%
);
animation: shimmer 1.5s infinite;
}
@keyframes shimmer {
0% {
transform: translateX(-100%);
}
100% {
transform: translateX(100%);
}
} .btn-remove-image {
position: absolute;
top: 10px;
right: 10px;
width: 32px;
height: 32px;
border-radius: 50%;
background: rgba(0, 0, 0, 0.7);
border: 2px solid white;
color: white;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
opacity: 0;
transition: all 0.2s ease;
z-index: 3;
padding: 0;
}
.image-preview:hover .btn-remove-image {
opacity: 1;
}
.btn-remove-image:hover {
background: rgba(231, 76, 60, 0.95);
transform: scale(1.1);
}
.btn-remove-image:active {
transform: scale(0.95);
} .image-name {
position: absolute;
bottom: 0;
left: 0;
right: 0;
background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
color: white;
padding: 12px 8px 8px;
font-size: 11px;
font-weight: 500;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
z-index: 2;
} .review-section {
background: #f8f9fa;
border-radius: 12px;
padding: 30px;
margin-bottom: 35px;
border: 2px solid #e0e0e0;
}
.review-section h4 {
margin: 0 0 20px 0;
color: #2c3e50;
font-size: 18px;
font-weight: 700;
}
.review-content {
background: white;
border-radius: 8px;
padding: 20px;
margin-bottom: 20px;
}
.review-item {
padding: 15px 0;
border-bottom: 1px solid #e0e0e0;
font-size: 15px;
line-height: 1.6;
display: grid;
grid-template-columns: 180px 1fr;
gap: 20px;
}
.review-item:last-child {
border-bottom: none;
}
.review-item strong {
color: #666;
font-weight: 600;
}
.review-item span {
color: #2c3e50;
font-weight: 500;
}
.btn-edit-review {
background: white;
color: var(--accent, #3498db);
border: 2px solid var(--accent, #3498db);
padding: 10px 24px;
border-radius: 6px;
font-size: 14px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
font-family: inherit;
}
.btn-edit-review:hover {
background: var(--accent, #3498db);
color: white;
transform: translateX(-5px);
} .form-navigation {
display: flex;
justify-content: space-between;
align-items: center;
gap: 20px;
margin-top: 50px;
padding-top: 30px;
border-top: 3px solid #f0f0f0;
}
.btn-prev,
.btn-next,
.btn-submit {
padding: 16px 40px;
border-radius: 10px;
font-size: 17px;
font-weight: 700;
cursor: pointer;
transition: all 0.3s ease;
font-family: inherit;
border: none;
display: inline-flex;
align-items: center;
gap: 8px;
}
.btn-prev {
background: #f5f5f5;
color: #555;
border: 2px solid #e0e0e0;
}
.btn-prev:hover {
background: #e8e8e8;
border-color: #ccc;
transform: translateX(-3px);
}
.btn-next,
.btn-submit {
background: var(--accent, #3498db);
color: white;
margin-left: auto;
box-shadow: 0 4px 12px rgba(52, 152, 219, 0.25);
}
.btn-next:hover,
.btn-submit:hover {
background: #2980b9;
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(52, 152, 219, 0.35);
}
.btn-next:active,
.btn-submit:active {
transform: translateY(0);
}
.btn-submit:disabled {
background: #95a5a6;
cursor: not-allowed;
transform: none;
box-shadow: none;
} @media (max-width: 768px) { .form-progress {
padding: 20px 0;
margin-bottom: 35px;
}
.progress-step {
padding: 0 8px;
}
.step-label {
font-size: 11px;
} .step-title {
font-size: 22px;
}
.step-description {
font-size: 14px;
} .image-dropzone {
padding: 40px 20px;
}
.dropzone-message svg {
width: 56px;
height: 56px;
}
.dropzone-message p {
font-size: 16px;
}
.image-preview-container {
grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
gap: 15px;
} .review-section {
padding: 20px;
}
.review-item {
grid-template-columns: 1fr;
gap: 8px;
padding: 12px 0;
} .form-navigation {
flex-direction: column;
gap: 15px;
}
.btn-prev,
.btn-next,
.btn-submit {
width: 100%;
justify-content: center;
margin-left: 0;
}
}
@media (max-width: 480px) { .form-progress {
flex-wrap: wrap;
gap: 15px 5px;
padding: 15px 0;
margin-bottom: 25px;
}
.form-progress::before {
display: none;
}
.progress-step {
flex: 1;
min-width: 70px;
padding: 0 5px;
}
.step-label {
font-size: 10px;
} .form-step {
min-height: 300px;
}
.step-title {
font-size: 20px;
}
.step-description {
font-size: 13px;
margin-bottom: 20px;
} .image-dropzone {
padding: 30px 15px;
}
.dropzone-message svg {
width: 48px;
height: 48px;
}
.dropzone-message p {
font-size: 15px;
}
.dropzone-message small {
font-size: 12px;
}
.image-preview-container {
grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
gap: 10px;
margin-top: 20px;
}
.btn-remove-image {
width: 28px;
height: 28px;
top: 8px;
right: 8px;
}
.btn-remove-image svg {
width: 14px;
height: 14px;
} .review-section {
padding: 15px;
}
.review-content {
padding: 15px;
}
.review-item {
font-size: 14px;
padding: 10px 0;
}
.btn-edit-review {
width: 100%;
padding: 12px 20px;
} .form-navigation {
padding-top: 20px;
margin-top: 30px;
gap: 12px;
}
.btn-prev,
.btn-next,
.btn-submit {
padding: 14px 30px;
font-size: 16px;
} .character-counter {
font-size: 12px;
}
} @media (prefers-reduced-motion: reduce) {
* {
animation-duration: 0.01ms !important;
animation-iteration-count: 1 !important;
transition-duration: 0.01ms !important;
}
}