/* Design Inquiry Page Styles */
.inquiry-page {
    background-color: #0a0a0a;
    color: #ffffff;
    min-height: 100vh;
    padding-top: 80px; /* Account for fixed header */
}

.inquiry-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
}

.page-title {
    font-family: 'Archivo Black', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;
}

.page-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
}

.divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff3366, transparent);
    margin: 2rem 0;
}

.inquiry-form {
    background-color: rgba(17, 17, 17, 0.8);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -1rem;
    margin-bottom: 1.5rem;
}

.form-group {
    flex: 1 0 100%;
    margin-bottom: 1.5rem;
    padding: 0 1rem;
}

.form-group.half {
    flex: 1 0 calc(50% - 2rem);
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #ff3366;
    box-shadow: 0 0 0 2px rgba(255, 51, 102, 0.2);
}

textarea {
    min-height: 150px;
    resize: vertical;
}

/* Style the file input */
.file-upload {
    position: relative;
    margin-top: 0.5rem;
}

.file-upload input[type="file"] {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.file-upload-label {
    display: block;
    padding: 1.5rem;
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.file-upload-label:hover {
    border-color: #ff3366;
    background-color: rgba(255, 51, 102, 0.05);
}

.file-upload-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #ff3366;
}

.file-name {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Submit button */
.submit-btn {
    display: block;
    width: 100%;
    padding: 1rem;
    background-color: #ff3366;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    background-color: #e62e5c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 51, 102, 0.3);
}

.submit-btn:disabled {
    background-color: #666;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .form-group.half {
        flex: 1 0 100%;
    }
    
    .inquiry-container {
        padding: 1rem;
    }
    
    .inquiry-form {
        padding: 1.5rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
}
