/* Reparaturservice Page Styles */

/* Repair Header */
.repair-header {
    padding: 10rem 0 4rem 0;
    background: linear-gradient(to bottom right, #dbeafe, var(--white), #ffedd5);
}

.repair-header-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.repair-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .repair-title {
        font-size: 3.75rem;
    }
}

.repair-description {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.services-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

.services-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.services-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 1rem;
    border: 2px solid var(--gray-200);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(249, 115, 22, 0.15);
    border-color: var(--orange-300);
}

.service-icon {
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
    border-radius: 1rem;
    margin-bottom: 1.5rem;
}

.service-icon i {
    width: 2rem;
    height: 2rem;
    color: var(--white);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.service-description {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.875rem;
    color: var(--gray-700);
}

.service-features i {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--orange-600);
    flex-shrink: 0;
}

/* Devices Section */
.devices-section {
    padding: 5rem 0;
    background-color: var(--gray-50);
}

.devices-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

.devices-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.devices-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
}

.devices-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .devices-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.device-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    border: 2px solid var(--gray-200);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.device-card:hover {
    transform: translateY(-5px);
    border-color: var(--orange-500);
    box-shadow: 0 10px 15px -3px rgba(249, 115, 22, 0.2);
}

.device-icon {
    width: 5rem;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--orange-100);
    border-radius: 50%;
    margin: 0 auto 1.5rem auto;
}

.device-icon i {
    width: 2.5rem;
    height: 2.5rem;
    color: var(--orange-600);
}

.device-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.device-desc {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* Repair Form Section */
.repair-form-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.form-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 3rem;
    border-radius: 1rem;
    border: 1px solid var(--gray-200);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.form-header {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--gray-100);
    text-align: center;
}

.form-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.form-subtitle {
    font-size: 0.9375rem;
    color: var(--gray-600);
}

.repair-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-section {
    padding: 2rem;
    background-color: var(--gray-50);
    border-radius: 0.75rem;
    border: 1px solid var(--gray-200);
}

.form-section-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--orange-500);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.form-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.required {
    color: #ef4444;
}

.optional {
    color: var(--gray-500);
    font-weight: 400;
    font-size: 0.8125rem;
}

.form-input,
.form-select,
.form-textarea {
    padding: 0.75rem 1rem;
    font-size: 0.9375rem;
    border: 2px solid var(--gray-300);
    border-radius: 0.5rem;
    background-color: var(--white);
    color: var(--gray-900);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--orange-500);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.form-input:hover,
.form-select:hover,
.form-textarea:hover {
    border-color: var(--orange-400);
}

.form-input.error,
.form-select.error,
.form-textarea.error {
    border-color: #ef4444;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--gray-400);
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1.25rem;
    padding-right: 3rem;
}

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

.form-hint {
    font-size: 0.8125rem;
    color: var(--gray-500);
    margin-top: 0.5rem;
    font-style: italic;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
}

.form-checkbox {
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid var(--gray-300);
    border-radius: 0.25rem;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 0.125rem;
    accent-color: var(--orange-500);
}

.form-checkbox:focus {
    outline: 2px solid var(--orange-500);
    outline-offset: 2px;
}

.checkbox-text {
    font-size: 0.875rem;
    color: var(--gray-700);
    line-height: 1.5;
}

.privacy-link {
    color: var(--orange-600);
    text-decoration: underline;
    transition: color 0.3s;
}

.privacy-link:hover {
    color: var(--orange-700);
}

.form-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background-color: var(--orange-500);
    color: var(--white);
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(249, 115, 22, 0.3);
}

.form-submit:hover {
    background-color: var(--orange-600);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(249, 115, 22, 0.4);
}

.form-submit:active {
    transform: translateY(0);
}

.form-submit i {
    width: 1.25rem;
    height: 1.25rem;
}

.form-info {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background-color: var(--blue-50);
    border-radius: 0.5rem;
    border-left: 4px solid var(--blue-500);
}

.form-info i {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--blue-600);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.form-info p {
    font-size: 0.875rem;
    color: var(--blue-900);
    margin: 0;
}

/* Form Messages */
.form-message {
    display: flex;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    animation: slideDown 0.3s ease-out;
}

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

.form-message i {
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.form-message strong {
    display: block;
    font-size: 0.9375rem;
    margin-bottom: 0.25rem;
}

.form-message p {
    font-size: 0.875rem;
    margin: 0;
    line-height: 1.5;
}

.form-message-success {
    background-color: #dcfce7;
    border-left: 4px solid #16a34a;
    color: #166534;
}

.form-message-success i {
    color: #16a34a;
}

.form-message-error {
    background-color: #fee2e2;
    border-left: 4px solid #dc2626;
    color: #991b1b;
}

.form-message-error i {
    color: #dc2626;
}

/* Process Section */
.process-section {
    padding: 5rem 0;
    background-color: var(--gray-50);
}

.process-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

.process-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.process-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
}

.process-steps {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .process-steps {
        flex-direction: row;
        justify-content: center;
    }
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 250px;
}

.step-number {
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(249, 115, 22, 0.3);
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.step-description {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.5;
}

.process-arrow {
    display: none;
}

@media (min-width: 1024px) {
    .process-arrow {
        display: flex;
        align-items: center;
        margin-top: -3rem;
    }

    .process-arrow i {
        width: 2rem;
        height: 2rem;
        color: var(--orange-500);
    }
}

/* Responsive */
@media (max-width: 767px) {
    .repair-header {
        padding: 8rem 0 3rem 0;
    }

    .repair-title {
        font-size: 2rem;
    }

    .services-title,
    .devices-title,
    .process-title {
        font-size: 2rem;
    }

    .form-wrapper {
        padding: 2rem 1.5rem;
    }

    .form-section {
        padding: 1.5rem;
    }

    .form-title {
        font-size: 1.5rem;
    }
}
