/* Simple & Professional Contact Section */

.contact-simple {
    padding: 100px 0;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
}

.contact-simple::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ff4de5, transparent);
}

/* Header */
.contact-header-simple {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header-simple h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    color: white;
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-header-simple .highlight {
    background: linear-gradient(45deg, #ff4de5, #8a2be2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-header-simple .subtitle {
    color: #aaa;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Contact Cards */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.contact-card {
    background: rgba(20, 20, 20, 0.8);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 77, 229, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.card-header {
    padding: 30px;
    background: rgba(255, 77, 229, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #ff4de5, #8a2be2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.8rem;
}

.card-header h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.card-subtitle {
    color: #aaa;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.card-content {
    padding: 30px;
}

.contact-info {
    margin-bottom: 25px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.info-item:hover {
    background: rgba(255, 77, 229, 0.05);
    transform: translateX(5px);
}

.info-item i {
    color: #ff4de5;
    font-size: 1.2rem;
    width: 30px;
}

.info-text {
    flex: 1;
}

.info-text .label {
    display: block;
    color: #aaa;
    font-size: 0.8rem;
    margin-bottom: 3px;
    letter-spacing: 1px;
}

.info-text .value {
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-text .value:hover {
    color: #ff4de5;
}

.card-footer {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.card-footer p {
    color: #ccc;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-footer i {
    color: #0aff0a;
    font-size: 0.9rem;
}

/* Contact Form */
.contact-form-simple {
    background: rgba(20, 20, 20, 0.8);
    border-radius: 15px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 60px;
    position: relative;
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.form-header h3 i {
    color: #ff4de5;
}

.form-header p {
    color: #aaa;
    font-size: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

/* Service Selector */
.service-selector {
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
}

.selector-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #aaa;
    font-size: 0.9rem;
}

.selector-label i {
    color: #ff4de5;
}

.selector-options {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.option-label {
    flex: 1;
    min-width: 150px;
}

.option-label input[type="radio"] {
    display: none;
}

.option-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid transparent;
    border-radius: 10px;
    color: #aaa;
    cursor: pointer;
    transition: all 0.3s ease;
}

.option-content i {
    font-size: 1.5rem;
    color: #ff4de5;
}

.option-label input[type="radio"]:checked + .option-content {
    background: rgba(255, 77, 229, 0.1);
    border-color: rgba(255, 77, 229, 0.3);
    color: white;
}

/* Form Grid */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

.form-group {
    position: relative;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #aaa;
    font-size: 0.9rem;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group label i {
    color: #ff4de5;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    font-size: 0.95rem;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(255, 77, 229, 0.5);
    background: rgba(255, 255, 255, 0.05);
}

.form-group .error {
    color: #ff4d4d;
    font-size: 0.8rem;
    margin-top: 5px;
    display: none;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #ff4d4d;
    background: rgba(255, 77, 77, 0.05);
}

.form-group.error .error {
    display: block;
}

/* Character Count */
.char-count {
    text-align: right;
    color: #666;
    font-size: 0.8rem;
    margin-top: 5px;
}

/* Submit Button */
.form-submit {
    text-align: center;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(45deg, #ff4de5, #8a2be2);
    color: white;
    padding: 16px 40px;
    border-radius: 30px;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    min-width: 200px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 77, 229, 0.2);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.submit-btn .spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top-color: white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.submit-btn.loading .spinner {
    display: block;
}

.form-note {
    color: #666;
    font-size: 0.85rem;
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-note i {
    color: #8a2be2;
}

/* Success Message */
.success-message {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 20, 20, 0.95);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10;
}

.success-message.show {
    opacity: 1;
    visibility: visible;
}

.success-icon {
    font-size: 4rem;
    color: #0aff0a;
    margin-bottom: 20px;
    animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.success-content {
    text-align: center;
    max-width: 400px;
    position: relative;
}

.success-content h4 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.success-content p {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.5;
}

.close-success {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-success:hover {
    background: rgba(255, 77, 229, 0.3);
    transform: rotate(90deg);
}

/* Quick Info */
.quick-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.info-box {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.info-box:hover {
    background: rgba(255, 77, 229, 0.05);
    transform: translateY(-5px);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 77, 229, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #ff4de5;
    font-size: 1.5rem;
}

.info-content h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.info-content p {
    color: #aaa;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-cards {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .quick-info {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .contact-simple {
        padding: 80px 0;
    }
    
    .contact-header-simple h2 {
        font-size: 2.5rem;
    }
    
    .contact-form-simple {
        padding: 30px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }
    
    .selector-options {
        flex-direction: column;
    }
    
    .option-label {
        min-width: auto;
    }
}

@media (max-width: 576px) {
    .contact-header-simple h2 {
        font-size: 2rem;
    }
    
    .contact-form-simple {
        padding: 25px;
    }
    
    .form-header h3 {
        font-size: 1.5rem;
    }
    
    .submit-btn {
        width: 100%;
        padding: 15px;
    }
}